PureBytes Links
Trading Reference Links
|
Hi Don ,
This is what I use:
//=================================================
//PF CHART GRID CONSTRUCTION
//==================================================
Class = ParamToggle("AssetClass", "Stocks|Forex", 1);
PlotGridLines = ParamToggle("PlotdGrid", "Yes|No", 0);
if (PlotGridLines)
{
begin = SelectedValue(BarIndex());
end = LastValue(BarIndex());
period = end-begin +1;
if( begin<end)
{
ScreenHigh =LastValue( HHV(cl, period )) + box;
ScreenLow =LastValue( LLV( Cl, period) )-box;
shift = 7;
top= LineArray( begin-shift, screenHigh, end, screenhigh, 0 , 1);
Bot= LineArray( begin-shift, screenlow, end, screenLow, 0, 1);
Plot( top, "", gc,styleLine|styleNoLabel , 0, 0,shift);
Plot( bot, "", gc,styleLine|styleNoLabel, 0 , 0 , shift);
// Vertical Grid
VerticalGrid = IIf ( BarIndex() >= begin, IIf(direction==1,
screenHigh, screenLow), Null);
Plot (VerticalGrid, "", gc, styleStaircase|styleNoLabel, 0,0, 1);
// Horizontal Grid
format =IIf(Class, 8.2, IIf (StrRight(Name() ,3) == "JPY", 8.2, 8.4));
while ( LastValue(bot)< LastValue(top)-0.5*box)
{
Plot( bot , "", gc, styleLine|styleNoLabel, 0, 0 ,shift);
text = NumToStr(LastValue(bot) + 0.5*box, format);
xposition = BarCount+2;
yPosition = LastValue(bot)+0.27*box;
PlotText(text, xPosition , yPosition, colorWhite);
bot = bot + box;
}
}
}
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/
|