Search found 457 matches

by henry1224
Wed Sep 01, 2021 7:26 pm
Forum: EdgeRater Scripting
Topic: Need help with a scripting syntax
Replies: 4
Views: 14019

Re: Need help with a scripting syntax

You can look up Donchain Channels and set the length to 200
by henry1224
Wed Mar 17, 2021 7:14 pm
Forum: EdgeRater Scripting
Topic: April 2021 TASC Traders Tips Volume Positive Negative Indicator
Replies: 0
Views: 18556

April 2021 TASC Traders Tips Volume Positive Negative Indicator

Under the Parameters tab Pds Double 30 5 100 APds Double 3 0 100 Apr:= (High + Low + Close)/3; At:=ATR(pds)*0.1; Vpd:= If (APR >= (Ref(APR,1) + at),Volume,0); VNd:= If (APR <= (Ref(APR,1) - at),Volume,0); VP:= Sum(VPD,Pds); VN:= Sum(VND,Pds); VPN: (((VP-VN)/MA(Volume,Pds))/Pds)*100,Width2,Color.Blue...
by henry1224
Tue Jan 26, 2021 6:04 pm
Forum: EdgeRater Scripting
Topic: Linda Raschke's Three Bar Triangle breakout formation
Replies: 2
Views: 12335

Re: Linda Raschke's Three Bar Triangle breakout formation

Hello Brian,
your use of the FILLRGN will cause problems in a scan, I would not use it,

FILLRGN(1,cond,0),Brush#D000000F0;
by henry1224
Mon Dec 23, 2019 9:18 am
Forum: EdgeRater Scripting
Topic: Bond Spread Index ETF's
Replies: 0
Views: 26430

Bond Spread Index ETF's

Using a Bond spread index to trade Indices https://imgur.com/IAwXhks Here is a picture of the Parameters Tab https://imgur.com/uwQNgI1 Create a symbol List:TLH,SHY,TLT,IEI,IEF,$XAX,SPUU,SPXL,DIA,HYG,$IUXX,$NASX,QQQ,IVW,IVV,SPY,IVE,SSO,TQQQ,UPRO,SQQQ Here is the code : DAHYG:=Fml(Sym1,'C'); DASHY:=Fm...
by henry1224
Sun Nov 03, 2019 7:44 pm
Forum: EdgeRater Scripting
Topic: Bollinger Bands in Tenths
Replies: 1
Views: 15682

Re: Bollinger Bands in Tenths

Bollinger bands w Fib Zones Use the same parameters from the indicator above In the script tab MID: MA(CLOSE,N),ColorBlack; HL: MID + P*STDP(CLOSE,N),width2,colorBlack; LL: MID - P*STDP(CLOSE,N),width2,colorBlack; dist:=hl-ll ; hf:=HL-dist*0.236 ; cfh:=HL-dist*0.382 ; cfl:=HL-dist*0.618 ; lf:=HL-dis...
by henry1224
Sat Nov 02, 2019 8:03 pm
Forum: EdgeRater Scripting
Topic: Bollinger Bands in Tenths
Replies: 1
Views: 15682

Bollinger Bands in Tenths

Bollinger bands in Tenths is based on Ian Woodward's Pct B Buckets Under the Parameters tab N double 20 5 300 P double 2 .1 10 Under the script tab MID:= MA(CLOSE,N); HH: MID + P*STDP(CLOSE,N),width2,colorBlack; LL: MID - P*STDP(CLOSE,N),width2,colorBlack; Height := HH-LL; A1 := LL+Height*0.1,Width2...
by henry1224
Sat Nov 02, 2019 3:45 pm
Forum: EdgeRater Scripting
Topic: Donchian Channels
Replies: 2
Views: 27596

Re: Donchian Channels

Here is an indicator Donchain Channel in Eighths Current Level Under the parameters tab Per Double 21 0 300 SN Double 3 0 200 Under the script tab hh:=HHV(Ref(high,1),per),Width2,ColorBlue; ll:=LLV(Ref(low,1),per),Width2,ColorBlue; Height := HH-LL; A1 := LL+Height*0.125,Width2,ColorGold; A2 := LL+He...
by henry1224
Sat Nov 02, 2019 3:40 pm
Forum: EdgeRater Scripting
Topic: Donchian Channels
Replies: 2
Views: 27596

Re: Donchian Channels

Here is a modified version of Donchain Channels in Eighths under the parameters tab per double 21 0 300 under the script tab hh:HHV(Ref(high,1),per),Width2,ColorBlue; ll:LLV(Ref(low,1),per),Width2,ColorBlue; Height := HH-LL; A1 := LL+Height*0.125,Width2,ColorGold; A2 := LL+Height*0.25,Width2,ColorRe...
by henry1224
Tue Oct 15, 2019 8:02 pm
Forum: EdgeRater Scripting
Topic: StochasticMACD from Nov 2019 TASC
Replies: 0
Views: 25244

StochasticMACD from Nov 2019 TASC

Under the Parameters Tab periods Double 50 2 1000 HERE IS THE CODE UNDER THE SCRIPT TAB HP:=HHV(H,Periods); LP:=LLV(L,Periods); MA12:=EMA(C,12); MA26:=EMA(C,26); ST12:=(MA12-LP)/(HP-LP); ST26:=(MA26-LP)/(HP-LP); STMACD:(ST12-ST26)*100,width2,ColorBlue; Signal:EMA(STMACD,9),Width2,ColorRed; FillRgn(S...
by henry1224
Sat Sep 21, 2019 6:38 pm
Forum: EdgeRater Scripting
Topic: Change EdgeRater to download TOS indices like $ADAD
Replies: 4
Views: 16805

Re: Change EdgeRater to download TOS indices like $ADAD

I created symbol lists of the market Breadth indicators from HGSI into Edgerater and they download correctly,Plot correctly,
but when I try to make indicators with them in the custom chart script, I get error messages because of the $ sign in front of their symbol letters.