I have a backtest that shows this:
and a strategy monitor that shows this:
How do I get the strategy monitor to show that this position is open ?
The strategy has an x day cover cover period:
Thank you.
and a strategy monitor that shows this:
How do I get the strategy monitor to show that this position is open ?
The strategy has an x day cover cover period:
CODE:
Position p = LastPosition; if(idx - p.EntryBar > Parameters[5].AsInt) { ClosePosition(p, OrderType.Market, 0,"Time_out"); }
Thank you.
Rename
The Strategy Monitor doesn't have a Positions view. In no case will it "show you" backtest Positions, so I don't know what you're indicating with the red box.
Furthermore, a S. Monitor backtest WILL BE DIFFERENT if you have "Use Live Positions" enabled in Trading Preferences.
Furthermore, a S. Monitor backtest WILL BE DIFFERENT if you have "Use Live Positions" enabled in Trading Preferences.
Back to this. Sorry. I don't understand what the different windows are showing and I would like to.
Strategy monintor is showing these potential trades for today for my USABLE strategy:
Order manager is showing this: for the same strategy.
What is the difference.
I am trying to figure out what each window shows.
Thank you.
Strategy monintor is showing these potential trades for today for my USABLE strategy:
Order manager is showing this: for the same strategy.
What is the difference.
I am trying to figure out what each window shows.
Thank you.
Where did the orders in the Order Manager come from? There's a Source column that you're not showing us.
Your Response
Post
Edit Post
Login is required