PureBytes Links
Trading Reference Links
|
I'm attempting to plot a straight horizontal line on a weekly chart
that that uses the highest high of the last 4 weeks including the
current week and plots that line horizontally.
I've tried initializing a variable that finds a max value for the
past 3 weeks but my coding doesn't work.
/* Switch to weekly time frame */
TimeFrameSet( inWeekly );
maxhigh = Max(( "H", inWeekly, 0 ),( "H", inWeekly, -1 ),( "H",
inWeekly, -2 ),( "H", inWeekly, -3 )); ***** bad code here ??
Pd1=Param("EMA 1 Period",5,2,200,1);
Pd2=Param("EMA 2 Period",8,2,200,1);
Plot(EMA(C,pd1), "EMA 1",ParamColor( "Color EMA", 38 ), styleThick);
Plot(EMA(C,pd2), "EMA 2",ParamColor( "Color WMA", 21 ), styleThick);
Plot(maxhigh,"Pivot",colorBlack,styleLine);
PlotOHLC( Open, High, Low, Close, "Modified " + Name(),
colorBlack, styleCandle );
Any help or suggestions would be much appreciated.
Thanx & Regards,
Dean H.
------------------------ Yahoo! Groups Sponsor --------------------~-->
$9.95 domain names from Yahoo!. Register anything.
http://us.click.yahoo.com/J8kdrA/y20IAA/yQLSAA/GHeqlB/TM
--------------------------------------------------------------------~->
Check AmiBroker web page at:
http://www.amibroker.com/
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:
http://docs.yahoo.com/info/terms/
|