|
Hello,
I can't see any problem with plotting.
If you want to plot the same way anything
else than price (such as moving average) you need to
perform
the same processing (the "iif" line) on every array you need
to plot)
limit = DateNum() <= ParamDate("date", Date() ); myClose = IIf( Limit, Close,Null); Plot( myClose, "Price", colorBlack, styleCandle ); myMA = IIf( Limit, MA( C, 10 ), Null ); Plot( myMA, "MyMA", colorRed, styleLine ); Best regards, Tomasz Janeczko amibroker.com __._,_.___ 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 other support material please check also: http://www.amibroker.com/support.html
SPONSORED LINKS
Your email settings: Individual Email|Traditional
Change settings via the Web (Yahoo! ID required) Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe __,_._,___ |
- [amibroker] ParamDate, Null and Plot Rakesh Sahgal
- RE: [amibroker] ParamDate, Null and Plot J. Biran
- Re: [amibroker] ParamDate, Null and Plot Tomasz Janeczko
- [amibroker] Re: ParamDate, Null and Plot brian.z123
- [amibroker] Re: ParamDate, Null and Plot brian.z123
- Re: [amibroker] Re: ParamDate, Null and Plot Rakesh Sahgal
