Search found 457 matches

by henry1224
Tue Aug 27, 2019 7:51 am
Forum: EdgeRater Scripting
Topic: Change EdgeRater to download TOS indices like $ADAD
Replies: 4
Views: 16939

Re: Change EdgeRater to download TOS indices like $ADAD

If you look in the parameter tab /under the type box, there is a symbol setting that you could use. But that symbol would also have to be in you symbol list.
by henry1224
Wed Jul 17, 2019 5:33 pm
Forum: Forum
Topic: Shared Folder
Replies: 2
Views: 18767

Re: Shared Folder

by henry1224
Mon Apr 29, 2019 7:34 am
Forum: Forum
Topic: Mean-Reversion from May TASC
Replies: 1
Views: 18225

Mean-Reversion from May TASC

Here is the code from the May TASC Mean-Reversion Under the parameter tab LN1 Double 10 0 100 LN2 Double 100 0 1000 Under the script tab sma:= MA(c,LN1); lma:= MA(c,LN2); dev:= std(c,LN1); z: (C - sma)/dev,Width2,ColorBlack; FillRgn(Z<= -1,Z,-1),Brush#5000FF00; FillRgn(Z>=1,Z,1),Brush#50FF0000; Here...
by henry1224
Thu Mar 07, 2019 6:41 am
Forum: Forum
Topic: JS HighJump_Oscillator_Modified
Replies: 3
Views: 19944

Re: JS HighJump_Oscillator_Modified

Here is the indicator for those who want to change the MA's to their own Under the parameter tab Threshold Double 95 0 10000 Lookback Double 200 0 10000 MN1 Double 17 0 1000 MN2 Double 50 0 1000 MN3 Double 100 0 1000 MN4 Double 200 0 1000 SN1 Double 3 0 100 SN2 Double 6 0 100 under the script tab he...
by henry1224
Thu Mar 07, 2019 6:33 am
Forum: Forum
Topic: JS HighJump_Oscillator_Modified
Replies: 3
Views: 19944

Re: JS HighJump_Oscillator_Modified

This version also takes into account the 100 MA Use the same Parameters tab from the above post Here is the script code MA17: MA(C, 17),norender; MA50: MA(C, 50), norender; MA100: MA(C, 100),norender; MA200: MA(C, 200),norender; HJ: (C - MA17)/MA17 + (C - MA50)/MA50 + (C - MA100)/MA100 + (C - MA200)...
by henry1224
Mon Mar 04, 2019 6:46 pm
Forum: Forum
Topic: JS HighJump_Oscillator_Modified
Replies: 3
Views: 19944

JS HighJump_Oscillator_Modified

Here is my version of the JS HighJump Oscillator Under the Parameters Tab Threshold Double 95 0 10000 Lookback Double 200 0 10000 SN1 Double 3 0 100 SN2 Double 6 0 100 Under the Script Tab here is the code MA17: MA(C, 17),norender; MA50: MA(C, 50), norender; MA200: MA(C, 200),norender; HJ: (C - MA17...
by henry1224
Sun Jan 06, 2019 9:25 am
Forum: EdgeRater Scripting
Topic: Tilson's T3 & T4 w Donchain Channels W Fib
Replies: 1
Views: 8134

Re: Tilson's T3 & T4 w Donchain Channels W Fib

Here is the same formula only in eighth's Use the same parameters as the above indicator Here is the formula A1:= (O+C)/2; e1:=EMA(A1,n1); e2:=EMA(e1,n1); e3:=EMA(e2,n1); e4:=EMA(e3,n1); e5:=EMA(e4,n1); e6:=EMA(e5,n1); e1a:=EMA(A1,n2); e2a:=EMA(e1a,n2); e3a:=EMA(e2a,n2); e4a:=EMA(e3a,n2); e5a:=EMA(e...
by henry1224
Mon Dec 24, 2018 9:48 pm
Forum: EdgeRater Scripting
Topic: Tilson's T3 & T4 w Donchain Channels W Fib
Replies: 1
Views: 8134

Tilson's T3 & T4 w Donchain Channels W Fib

under the parameters tab N1 double 3 0 100 N2 double 4 0 200 Per Double 21 0 500 Here is the code A1:= (O+C)/2; e1:=EMA(A1,n1); e2:=EMA(e1,n1); e3:=EMA(e2,n1); e4:=EMA(e3,n1); e5:=EMA(e4,n1); e6:=EMA(e5,n1); e1a:=EMA(A1,n2); e2a:=EMA(e1a,n2); e3a:=EMA(e2a,n2); e4a:=EMA(e3a,n2); e5a:=EMA(e4a,n2); e6a...
by henry1224
Mon Oct 15, 2018 9:25 am
Forum: EdgeRater Scripting
Topic: Tilson's T3 & T4 w Raghee Horner 34 EMA High Low bands
Replies: 0
Views: 21177

Tilson's T3 & T4 w Raghee Horner 34 EMA High Low bands

under the Parameters Tab n1 Double 3 0 200 n2 Double 4 0 300 under the scripts tab here is the formula A1:= (O+C)/2; e1:=EMA(A1,n1); e2:=EMA(e1,n1); e3:=EMA(e2,n1); e4:=EMA(e3,n1); e5:=EMA(e4,n1); e6:=EMA(e5,n1); e1a:=EMA(A1,n2); e2a:=EMA(e1a,n2); e3a:=EMA(e2a,n2); e4a:=EMA(e3a,n2); e5a:=EMA(e4a,n2)...