Search found 457 matches

by henry1224
Sun Oct 14, 2018 3:00 pm
Forum: Forum
Topic: Stiffness Indicator from Nov TASC
Replies: 0
Views: 26876

Stiffness Indicator from Nov TASC

Here is the edgerater version of the stiffness indicator from the November TASC article under the parameters tab TP double 10 2 1000 MAB double 40 2 1000 SM double 40 2 1000 NTSD double .2 0 2 N double 3 0 100 StiffBuy Double 90 70 100 StiffSell Double 30 10 100 Under the scripts tab here is the for...
by henry1224
Thu Oct 04, 2018 5:05 pm
Forum: Forum
Topic: VPA Rank
Replies: 0
Views: 27101

VPA Rank

I was going through the HGSI VPA PDF and decided to code the VPA signal into Edgerater. here is what I came up with, but I don't seem to find any trading value in it. Your comments and opinions would be helpful It takes into consideration Volume, Spread Size, and close vs Spread Under the parameters...
by henry1224
Wed Oct 03, 2018 3:42 pm
Forum: Forum
Topic: Schaff Trend Cycle Indicator
Replies: 3
Views: 20745

Re: Schaff Trend Cycle Indicator

You may also do a search in this forum for Cycles Combined there are several there

Henry
by henry1224
Wed Oct 03, 2018 3:36 pm
Forum: Forum
Topic: Schaff Trend Cycle Indicator
Replies: 3
Views: 20745

Re: Schaff Trend Cycle Indicator

I think this is close to what you want Under the Parameters Tab N1 Double 23 0 200 N2 Double 50 0 300 N3 Double 9 0 100 STN Double 10 0 100 STN2 Double 5 0 100 Under the script Tab here is the code A:=WMA((O+C)/2,N1)-WMA((O+C)/2,N2); A1:=WMA(A,N3); Hist:=A-A1; ST:((Hist-LLV(Hist,STN)) / (HHV(Hist,ST...
by henry1224
Mon Oct 01, 2018 6:53 pm
Forum: Forum
Topic: Probability Cones
Replies: 0
Views: 26850

Probability Cones

Using the POTBOT template, I was wondering if there was an indicator that I could plot on a chart that would show the Probability Cones?
by henry1224
Mon Sep 24, 2018 3:39 pm
Forum: Forum
Topic: Pitchforks
Replies: 0
Views: 26271

Pitchforks

Hello Chris, is there any possibility of adding Andrews Pitchforks?
by henry1224
Tue Sep 04, 2018 8:26 pm
Forum: EdgeRater Scripting
Topic: DLL or Bots In edgerater
Replies: 0
Views: 20312

DLL or Bots In edgerater

Hello Chris,

Using MS Visual Basic, can we write DLL's or Bots and use them in edgerater?

Henry
by henry1224
Tue Aug 28, 2018 6:18 am
Forum: EdgeRater Scripting
Topic: Cycles Combined
Replies: 4
Views: 24742

Re: Cycles Combined

here is a Fibonacci based cycles indicator with 9 cycles P0:=EMA(((C-LLV(L,3))/(HHV(H,3) - LLV(L,3))),3); P1:=EMA(((C-LLV(L,5))/(HHV(H,5) - LLV(L,5))),3); P2:=EMA(((C-LLV(L,8))/(HHV(H,8) - LLV(L,8))),3); P3:=EMA(((C-LLV(L,13))/(HHV(H,13) - LLV(L,13))),3); P4:=EMA(((C-LLV(L,21))/(HHV(H,21) - LLV(L,21...
by henry1224
Tue Aug 28, 2018 6:12 am
Forum: Forum
Topic: Price Channels
Replies: 2
Views: 20610

Re: Price Channels

here is the newest version of Price channels in Eights with colorized zones CH:Ref(HHV(H,N),LB),Width2,ColorBlack; CL:Ref(LLV(L,N),LB),Width2,ColorBlack; C87:=(CH -CL)*.875 +CL,ColorYellow; C75:=(CH -CL)*.75 +CL,ColorRed; C62:=(CH -CL)*.625 +CL,ColorGreen; C5:(CH -CL)*.5 +CL,Crossdot,ColorBlue; C37:...
by henry1224
Wed Aug 08, 2018 7:58 pm
Forum: Forum
Topic: Formula discriptions
Replies: 2
Views: 16848

Re: Formula discriptions

Hello Chris, thanks for the descriptions.
If I want to get the previous value of a variable using convertNan2Prev, I would have to make the variable end with a nan condition?

A:=If (C>Ref(C,1),C-Ref(C,1),Nan);
A1:ConvertNan2Prev(A);
Sum(A+A1,5);

Is that correct?

Henry