NexusFi: Find Your Edge


Home Menu

 





script to close orders only on new bar


Discussion in Platforms and Indicators

Updated
    1. trending_up 2,612 views
    2. thumb_up 0 thanks given
    3. group 1 followers
    1. forum 1 posts
    2. attach_file 0 attachments




 
Search this Thread

script to close orders only on new bar

  #1 (permalink)
philtrader
sydney
 
Posts: 3 since Jul 2011
Thanks Given: 4
Thanks Received: 0

Hi,

I trying to create a script that closes all existing orders only when a new bar is detected.
It seems the code below always get executed even when new bar is same as old bar.
Thanks to help.


static int old_bars = 0; // remember the amount of bars already known
if (old_bars != Bars) // if a new bar is received
{
for (int i = OrdersTotal() - 1; i >= 0; i--)
{
if(OrderSelect(i,SELECT_BY_POS)==true)
{
int ticket=OrderTicket();
double lots=OrderLots();
OrderClose(ticket,lots,Ask,3);
}
}
} old_bars = Bars; // remember how many bars are known

Reply With Quote

Can you help answer these questions
from other members on NexusFi?
Cheap historycal L1 data for stocks
Stocks and ETFs
MC PL editor upgrade
MultiCharts
ZombieSqueeze
Platforms and Indicators
NT7 Indicator Script Troubleshooting - Camarilla Pivots
NinjaTrader
REcommedations for programming help
Sierra Chart
 




Last Updated on February 7, 2013


© 2024 NexusFi™, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Privacy Policy - Downloads - Top
no new posts