PureBytes Links
Trading Reference Links
|
I'm using the proven AmiBroker formula of SAR of RSI. Problem is that
my "UpSAR" and "DownSAR" are always the same plot values, so I never
see the other plot color. I'm trying to make a simple IIF statement
based on REF of one day ago to plot green for upswing and red for
downswing. Any help is appreciated.
//Title = "SAR Of RSI";
Plot( RSI(14), "RSI", colorBlue, styleThick );
P = ParamField("Price field",-1);
oldo = O; oldh = H; oldl = L; oldc = C; oldv = V;
O = H = L = C = p;
sar_flexible = SAR();
O = oldo; H = oldh; L = oldl; C = oldc; V = oldv;
/* split the plotting to green for upswing and red for downswing */
IIf( sar_flexible > Ref(sar_flexible,-1),
Plot( sar_flexible, "Up SAR", colorGreen ,styleDots | styleNoLine |
styleThick ),
Plot( sar_flexible, "Down SAR", colorRed ,styleDots | styleNoLine |
styleThick ));
GraphXSpace = 5;
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
For other support material please check also:
http://www.amibroker.com/support.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|