Hi,
I think it would be a great idea to implement a script language to program triggers.
The graphic interface is powerful, but I think it's not possible (or at least can be difficult) to do complex triggers. Also if you have a lot of triggers you will be lost among them.
So I think it would be a great idea if you implement a script language to make triggers, something like:
If difference(current_round.favourite.back_price, current_round.second_favourite.back_price) > 2 and (previous_round.favourite.hand <> current_round.favourite.hand) and (current.favourite.back_price < 2) Then
....
Else
....
End If
Even you could define your own functions:
Function Strategy_1
Begin
...
If (current.continuous_lost_games > 3) then
Call Strategy_2
End If
End
Function Strategy_2
Begin
If (current.continuous_lost_games > 3) then
Call Strategy_3
End If
End
...
Regards.