PureBytes Links
Trading Reference Links
|
Title: Message
Here
is an example of what you want.
Cheers,
Gordon
Sutherland
_SECTION_BEGIN("RSI"); // PARAMETERS Pds = Param("RSI Periods",14,1,100,1); RSIOB = Param("RSI
OverBought",70,51,100,1); RSIOS = Param("RSI
OverSold",30,0,500,1); RSICol = ParamColor("RSI Color",colorGreen); MAPer = Param("MA Periods for Smoothing",14,1,50,1); MACol = ParamColor("MA Periods Color",colorRed); XSpace = Param("GraphXSpace",6,0,50,1);
Plot(RSI(Pds),"\\c29RSI (" + WriteVal(Pds,1.0) + ")",RSICol,1);
Plot(RSIOB,"RSI OverBought",colorRed,1); Plot(RSIOS,"RSI OverSold",colorBlue,1);
Plot( MA(RSI(Pds),MAPer), "RSI MA ", MACol ); PlotOHLC( RSI(Pds),RSI(Pds),50,RSI(Pds),
"", IIf( RSI(Pds) > 50, colorRed, colorBlue ), styleCloud | styleClipMinMax |
4096, RSIOS, RSIOB );
GraphXSpace = XSpace; _SECTION_END();
I am having some trouble in
filling some gaps with color in Amibroker charts.
Any idea how it can be done in
AFL?
To be more specific if I have a chart of RSI and the chart
crosses the 70% gridline from bottom then crosses again from top, I would like
to fill the gap (area) of the polygon created above the 70% gridline with
color is it possible?
Regards,
A
__._,_.___
**** IMPORTANT PLEASE READ ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
TO GET TECHNICAL SUPPORT send an e-mail directly to
SUPPORT {at} amibroker.com
TO SUBMIT SUGGESTIONS please use FEEDBACK CENTER at
http://www.amibroker.com/feedback/
(submissions sent via other channels won't be considered)
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
__,_._,___
|