Hi
Here are a few entry level questions:
1. When does the efs run inside every bar? at the begining, middle or after the end of bar (I use tick bars).
2. If I want to go Long for example as follows (pseudo code):
if close() >= MAStudy(10,...)
Stratety.doLong( "Crossing Up",
Strategy.MARKET,
Strategy. NEXTBAR);
then if current bar closes above MA, can I still get the Open price of the Next bar?
To get the Closing price efs has to run After the Current bar, when the Next bar is already open, so how can I still get the Open price?
Or maybe close() returns really the price of current time when efs runs and not the bar's closing price? doesn't make sense.
3. There is any way to get a trade in Real Time, i.e. not at open or close bar bar current Market price? Maybe using StopBuy? That would be the only way?
4. Strategy Analyzer: I trade YM (Dow emini) where one point is $5. How do I display the Profit in terms of Dollars and not in Points?
Thats it for now, many thanks, Arie
Here are a few entry level questions:
1. When does the efs run inside every bar? at the begining, middle or after the end of bar (I use tick bars).
2. If I want to go Long for example as follows (pseudo code):
if close() >= MAStudy(10,...)
Stratety.doLong( "Crossing Up",
Strategy.MARKET,
Strategy. NEXTBAR);
then if current bar closes above MA, can I still get the Open price of the Next bar?
To get the Closing price efs has to run After the Current bar, when the Next bar is already open, so how can I still get the Open price?
Or maybe close() returns really the price of current time when efs runs and not the bar's closing price? doesn't make sense.
3. There is any way to get a trade in Real Time, i.e. not at open or close bar bar current Market price? Maybe using StopBuy? That would be the only way?
4. Strategy Analyzer: I trade YM (Dow emini) where one point is $5. How do I display the Profit in terms of Dollars and not in Points?
Thats it for now, many thanks, Arie
Comment