Pages:
Actions
  • #1 by flanna on 13 Jan 2014
  • I know that this is going to be simple but I can't figure it out. How can I set the bot to keep making bets until a certain level of profit or loss is made and then to stop betting?

    I would like to add this feature to a trigger that I have already made.
  • #2 by mcbee on 13 Jan 2014
  • hi
    use the total_won variable.
    and trigger expression total_won is equal or less than (the profit you require)
    and trigger expression total_won is equal or greater than -(the loss limit)
    please note
    -(the loss limit)
    -10   for a loss of 10 on the days betting


    mcbee
  • #3 by flanna on 13 Jan 2014
  • Thanks mcbee.
    I was wondering about "total_won". I don't understand what is meant by "total_won". Won since when? Is this what was won today? Or won since the trigger file started running? When does this figure reset? What if the trigger file is left running for a few days?
  • #4 by mcbee on 13 Jan 2014
  • hi
    total_won
    is the amount that has been won/lost from 12:00 midnight to 11:59:59 midnight today.
    it resets at 12:00 midnight.
    you can see the profit from the previous day in the statement.
    if you want to stop the bot at a set profit over x number of days, then you would have to use a variable to record the profit/loss amounts.

    mcbee
  • #5 by flanna on 13 Jan 2014
  • Aha... Simple, really. Thanks mcbee.  :)
Pages:
Actions