Betting System: Fibonacci first lotsize base on balance, is it possible?
-
Hello guys,
i hope you can help me

I would love to set the Betting System: Fibonacci so that when it starts with e.g. 100$, that it use 0.01 lot and when reaches a balance for e.g. 1000 $, that it increase the first lotsize trade to 0.02 lot and
2000 $ = 0.03 lot ... and so on.
At all its great, but to make a 10 year backtest, it reduce the profit all the time, and i have to make it year by year and test it again. I would love if i can set it so that it changes the lotsize by balance like its possible on other systems here too. Can you maybe help?
Thanks in advance for your answers!
Greetings Tom -
Can you please share the project to take a llok on it?
-
Hello

i havent found the share project button, dont know why. I saw it in the past, but atm. i havent found it. But at all its simple situation and i made a screenshot.

My problem is: if i make a backtest from 2010 till now, then it takes all the time over 10 years the same Initial Volumen. It would be great if i can say the system use Initial Volume 0.1 from 0-1000 balance, 0.2 - 1000 - 2000, and so on, that its % based or what ever on the increasing balance situation.
In real trading i can do it from time to time, but in backtesting i have to make year by year, write results on excel, make new backtest, and this is extremly timeconsuming.
Do you haven an idea how i can solve it?
-
@tom-5 To use 0.1 lots for every 1000$ in balance, put this string into the initial volume field:
AccountBalance()/1000*0.1
-
@roar waow - thanks i have to try it later - but sounds logic so far - thanks so far for your help

-
@roar said in Betting System: Fibonacci first lotsize base on balance, is it possible?:
AccountBalance()/1000*0.1
Can you maybe help me to make here a variable out of it which i can change easy in settings later? Atm. i have put in a varible double for initial lotsize. Is it possible to use something like this too with your string?
-
@tom-5 You can use constants and variables simply as a part of code, you don't have to right-click so the field turns brown/blue.
Make a constant lotsize = 0.1
Now the code string is:
AccountBalance()/1000*lotsize