The amount won or lost in the channel [number] games ago. The [number] defines the index of the game, starting from 1, which indicates the previous game, then 2 for the game before the previous and so on. The first game in the history of the channel will have the index of hist_count. Example:
Game 1: won 5 EUR
Game 2: lost -2 EUR
Game 3: won 20 EUR
Game 4: lost -4 EUR
Game 5: lost -3 EUR
hist_count = 5
hist_1_pl = -3
hist_2_pl = -4
hist_3_pl = 20
hist_4_pl = -2
hist_5_pl or hist_hist_count_pl = 5
The prefix [z] can be added to stress that you need to include the games where you neither won nor lost anything (for example, the games where you did not bet). For instance:
Game 1: won 3 EUR
Game 2: zero P/L
Game 3: lost -4 EUR
Game 4: zero P/L
In this case:
histz_1_pl = 0.0, hist_1_pl = -4
histz_2_pl = -4, hist_2_pl = 3
histz_3_pl = 0.0, hist_3_pl undefined
histz_4_pl = 3.0, hist_4_pl undefined
The prefix [m] or [s] can be added to address to a particular type of market (either "Main Bets" or "Side Bets"). For example, hist_4_mpl will return the amount you won/lost 4 games ago, in "Main Bets" market of the channel.
|