[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [amibroker] Re: Intraday - Open 10 Minute Price Marker



PureBytes Links

Trading Reference Links



Hi
 
I have modified the code as layed out below but am getting a sytax error after the important time line of code.   This is set at 9.50am so as to align with the Australian SPI open.
 
Ken
 
_SECTION_BEGIN( "Price");
TimeFrameSet( in5Minute );
SetChartOptions( 0,chartShowArrows|chartShowDates );
_N(Title = StrFormat("{ {NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) Vol " +WriteVal( V, 1..0 ) +" {{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 )) ));
Plot( C, "Close", ParamColor(" Color", colorBlack ), styleNoTitle | ParamStyle(" Style") | GetPriceStyle( ) );
if( ParamToggle( "Tooltip shows", "All Values|Only Prices" ) )
{
ToolTip=StrFormat( "Open: %g\nHigh: %g\nLow: %g\nClose: %g (%.1f%%)\nVolume: "+NumToStr( V, 1 ), O, H, L, C, SelectedValue( ROC( C, 1 )));
}
newday = Day() != Ref(Day(), -1);
highofday = Ref(HighestSince( newday, H, 1), -1);
Lowofday = Ref(LowestSince( newday, L, 1), -1);
Rangeofday=highofday-lowofday;
importanttime= 95000;
10minuteORhigh = ValueWhen( Cross(TimeNum( ),95000), highofday, 1);
10minuteORlow= .....;
StrFormat("newday = %g \nhighofday = %1.4f \nLowofday = %1.4f \n10MinHi = %1.4f", newday, highofday, Lowofday, HighOr10Min );
Plot(HighOr10Min , "10 Day", colorRed);


Need a Holiday? Win a $10,000 Holiday of your choice. Enter now..

__._,_.___


**** 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/





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

__,_._,___