Topics
Forum Topics not found
Replies
markae
02 Feb 2018, 15:10
RE: RE: RE: RE:
Drummond360 said:
Nice stats! Might you be interested in collaborating? Drop me an email if you'd like to discuss? ian@3sixty.me.uk
Ok, I'll get in contact with you the next days.
Regarding my cBots: maybe I will sell a limited number of licenses of my bots to get a good starting capital for trading, but thats still not decided. As far as I know Spotware is planing a market to sell his own products like cBots.
@markae
markae
01 Feb 2018, 12:18
( Updated at: 21 Dec 2023, 09:20 )
RE: RE:
You said it already correct:
Drummond360 said:
In theory, if...
I'm sorry to say, that those backtests never represents how your cBot would work in a real live environment. There are a lot of other factors which need to be considered, for example slippage, execution delay, variable spreads and so on.
I have some robots which really works, but the backtests are looking by far not so fantastic. Here is an example of one of my bots for EURUSD (01/01/2016-31/01/2018, Commission of $3 per round turn lot)
And here my first forward test on demo with 3 of my cBots running on the same account (since monday I have it running on a live account too):
@markae
markae
01 Feb 2018, 09:27
RE:
Just check if it is still "false" and only then check the "price"-Value. Once it becomes true stop checking the price value
bool FirstFibLevel = false; if(!FirstFibLevel) { if (price < 7) { FirstFibLevel = true; } else { FirstFibLevel = false // not really necessary } } if (FirstFibLevel) { Place order to enter trade at 10 }
@markae
markae
31 Jan 2018, 22:57
( Updated at: 21 Dec 2023, 09:20 )
RE:
Drummond360 said:
If you liked those results check out this little weapon!
Do you believe it can work on a live account? Would it be possible to make a backtest with fixed lotsize? And is it right that you have backtested only 1-2 days?
@markae
markae
11 Feb 2018, 13:44
This is a nullable double.
Try to use this value for your calculations:
@markae