PureBytes Links
Trading Reference Links
|
Hi,
I do that way. Not the best code as I did not find yet how to deal with
interval().
I code manually 205500 to close at 210000 in 5 minutes time period.
I code manually 213000 to close at 220000 in 30 minutes time period...
Regards
// Defines market hours
MarketOpen = 080000;
MarketClose = 205500;// in 5 minute interval
MArketON = TimeNum() >= MarketOpen;
MarketOFF = TimeNum() >= MarketClose ;
MArketON = IIf( MArketOFF == 1, 0, 1 );
Buy = [ your conditions] AND MArketON;
Sell = [ your conditions] OR MarketOFF;
Short = [ your conditions] AND MarketON;
Cover = [ your conditions] OR MArketOFF;
shape = IIf( Buy , ExRem( Buy, Sell ) * shapeUpArrow, ExRem( Sell, Buy )
* shapeDownArrow );
PlotShapes( shape, IIf( Buy, colorDarkGreen, colorDarkRed ), 0, IIf(
Buy, Low, High ) );
shape2 = IIf( Cover , ExRem( Cover, Short ) * shapeUpArrow, ExRem(
Short, Cover ) * shapeDownArrow );
PlotShapes( shape2, IIf( Cover, colorDarkGreen, colorDarkRed ), 0, IIf(
Cover, Low, High ) );
zeek ing a écrit :
>
>
> hello,
>
> anyone know the code for a system to close all open positions when the
> market closes for that day.
>
> Basically a day trading position?????
>
> Then at the open of the next days sessions the system start again.....
>
>
> thanks
> zeek
>
>
>
------------------------------------
**** 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/
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/
|