Hello,
after some backtesting of intraday strategies in European (German) stocks, I am actually testing the strategy monitor in paper trading.
Some questions:
a) Is it possible to write from my c#-coded strategy to the monitors log ?
I use WriteToDebugLog but those comments seems not to be visible in the monitors log (or somewehre else).
I think it could be very useful in livetrading to get as much log-information as possible.
Thanks!
after some backtesting of intraday strategies in European (German) stocks, I am actually testing the strategy monitor in paper trading.
Some questions:
a) Is it possible to write from my c#-coded strategy to the monitors log ?
I use WriteToDebugLog but those comments seems not to be visible in the monitors log (or somewehre else).
I think it could be very useful in livetrading to get as much log-information as possible.
Thanks!
Rename
a) Not to Monitor log, but you can write to the Log Viewer. LIke this:
CODE:
WLHost.Instance.AddLogItem(StrategyName, "something you want to write", WLColor.Green);
Your Response
Post
Edit Post
Login is required