Through the platform, in the help menu. Don’t remember the shortcut..🙄
Technical support is available with CTRL+M.
[attachment file=63392]
BCParticipant
Master
Thx, Nicolas.
my problem belong automatic trading or others?
Automatic trading problem!
BCParticipant
Master
Please note StrategyProfit will return to 0 when tempoary stop and re-start again your strategy in Proorder list.
Thank you Bin for sharing!
I solved this problem with a variable that I add to the strategy profit. This variable I update manually every time I have to restart the strategy.
BCParticipant
Master
Hi Despair
Thanks for remind, like this?
Equity = InitialCapital + StrategyProfit + LastBalance
Yes exactly. And lastbalance you always update after a restart. In this way your position sizing should work.
BCParticipant
Master
Thanks Despair.
I found a funny situtation, below coding with StrategyProfit command still work after re-start. 😤😤😤
Once PositionSize = 1
Once Size = PositionSize
Once CloseBalanceMaxDrop = 50
Once Capital = (10000*Size)
Equity = Capital + StrategyProfit
// Fuse System
If Equity<QuitLevel then
Quit
Endif
RecordHighest = MAX(RecordHighest,Equity)
QuitLevel = RecordHighest*((100-CloseBalanceMaxDrop)/100)
In my experience it is no problem to stop and restart a strategy as long as you don’t make changes strategy profit is preserved. But you lose the strategy profit when you for example want to change the contract at expiry.