PureBytes Links
Trading Reference Links
|
Thanks,
Not quite
what im looking for, As it's limiting whats plotted.
I was hopeing for something that "Inserted" a gap on the left
plot side.
(So I didn't have to go modifying all my indicators).
Still, It looks good - Here is a small revision that lets you use your
history bar. Also if you select the Rightmost gap at the far right end,
It will Auto Display 100 quotes default. (Modify accordingly).
NumBarsShown =
Param("NumBarsShown",10,10,100,1);
SV =
SelectedValue(BarIndex());
ShowFrom =
IIf((SV
==
BarCount-1),BarCount-100,
SV);
Blank =
IIf(BarIndex()
>
showfrom-NumBarsShown,1,Null);
Plot(Blank*C,"Close",colorBlack,styleCandle);
KR
Michael.S.G.
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Yahoo! Groups Links
To visit your group on the web, go to:http://groups.yahoo.com/group/amibroker/
To unsubscribe from this group, send an email to:amibroker-unsubscribe@xxxxxxxxxxxxxxx
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
|