Pages:
Actions
  • #1 by Alden on 13 Feb 2011
  • Hi,

    I'm trying to create a trigger taking into account the difference in the back price between favourite and second favourite.

    Example:

    If second favourite back price - favourite back price > 2 then
     bet for favourite
    else
     do nothing
    end if

    But in the trigger conditions window I only see combobox controls, I cannot write  free text.

    So how can I create this condition in the trigger?

    Also I want to create a trigger in this way:

    If I lost the consecutive last 3 games, stop to bet (ignoring all other triggers) and wait 2 games to bet again. How can I make it in X-Feeder?

    Regards.
  • #2 by Tim (WellDoneSoft) on 14 Feb 2011
  • Hi ALden,

    Free text is called "Trigger Expression". But you don't need it:
    Code: [Select]
    Selection: Favourite
    Conditions are met:
    Selection's Back Price is less than h_2_back_price - 2

    To be honest "h_2_back_price - 2" is a trigger expression :-)
  • #3 by Tim (WellDoneSoft) on 14 Feb 2011
  • Quote
    If I lost the consecutive last 3 games, stop to bet (ignoring all other triggers) and wait 2 games to bet again. How can I make it in X-Feeder?
    Code: [Select]
    Action: back (or lay)
    Conditions are met:
    AND
    [block start]
    Channel's Consecutive Losses is less than 3
    OR Channel's Wins during 4 games is less than 3
    [block end]
Pages:
Actions