Increment volume upper limit based on equity when using martingale
-
I know martingale is frowned on but I'm creating a money management system based on this idea.
I want to set a volume upper limit based on the size of my account so for example for 500 equity I want volume upper limit to be 0.16 but once the account grows to 1000 I want that incremented. So my volume upper limit is based on a specific account size.
@roar This is should be a fun one for you.
-
@jzfusion You can do that by using condition blocks checking the balance atany moment and once any of those limits is cressed, a variable with your upper limit is modified.
-
@l-andorrà
I can do [ if balance => 500 ] then blah. What I can't get my head around is doing the increments based on each additional 500 -
-
@l-andorrà
Thanks. I think this will do for now -
@jzfusion You're welcome.
