Author Topic: trigger/block activation  (Read 5911 times)

Tags:
  • All members
  • Posts: 83
trigger/block activation
« on: 07 Apr 2013, 10:43 »
As I continue to try to get to grips with MF7 I have some questions re activation and deactivation of triggers and blocks.

I don't think that a trigger can deactivate itself.  I assume that is because all actions are performed simultaneously.  But can a trigger deactivate the block it sits in?

Also, is there some delay when a trigger or block is activated?  Or should it be instantaneous?

So if a block had two triggers in the order
trigger A (enabled)
trigger B (disabled)

and the actions of trigger A were:

1. bet for £x
2. activate trigger B

and the actions of trigger B were:

1. bet for £y

should both bets (x and y) fire on the next refresh (assuming no conditions or conditions all met), or is there some delay inherent in activating a trigger such that more than one x bet will fire before a y bet fires?

Any insight gratefully received.
O

  • Moderator
  • Posts: 3605
*
Re: trigger/block activation
« Reply #1 on: 07 Apr 2013, 12:07 »
Hi
I think you can deactivate a trigger with a second action (after the betting action).

I'm not sure on the activation delay, but I would guess that it needs at least one refresh to prepare for activation. Best way is set up a test trigger to write something like current time to the action log on activate. Set your market refresh to say 5 or 10 secs. You should be able to see the results in the log.
Please read the following disclaimer with regards to the information you may request and obtain on our forum. This specifically concerns trigger files and various instructions as to how to implement a strategy.

  • All members
  • Posts: 83
Re: trigger/block activation
« Reply #2 on: 07 Apr 2013, 15:28 »
Thanks Mark

I did some testing on a one second refresh which seemed to indicate some delay on activations, which I wasn't expecting and confused me.  So what you say on that makes sense.

I'm pretty sure I also tested a deactivate action after a betting one and it didn't work - crashed the program if I remember correctly.  I thought the actions within a trigger were simultaneous rather than sequential and that's why that didn't work.

I suppose I could just have a deactivate block/trigger with identical conditions following a bet block/trigger.  That should work shouldn't it?  Both blocks/triggers will be working off identical data on the same refresh won't they, even though the first is firing a bet?

  • Moderator
  • Posts: 3605
*
Re: trigger/block activation
« Reply #3 on: 07 Apr 2013, 16:51 »
Hi
If you are going to use deactivate it may be better as you say to have a separate trigger for the deactivation action.
Conditions should include:
Trigger A number of runs is greater than 0
or appropriate conditions for checking Trigger A executed

...but on that theme why not just have a condition in Trigger B:
Trigger A number of runs is greater than 0

and in Trigger A you could also have:
Trigger A number of runs is equal to 0

no need for the activate /deactivate then?
Please read the following disclaimer with regards to the information you may request and obtain on our forum. This specifically concerns trigger files and various instructions as to how to implement a strategy.

  • All members
  • Posts: 83
Re: trigger/block activation
« Reply #4 on: 07 Apr 2013, 17:53 »
Haven't tried using Trigger's number of runs before, and your post has given me an idea which might well make everything much simpler for me - so thanks very much.

Similar question about that though - how quickly will a run register.  Will there need to be a further refresh?

E.g.

Trigger C is set to bet £x no more than 10 times
Trigger D is set to bet £y if Trigger C's number of runs > Trigger D's number of runs

What will happen on the next refresh?  I assume, just a bet for x, then on the next refresh after that, a bet for x and y?

  • Moderator
  • Posts: 3605
*
Re: trigger/block activation
« Reply #5 on: 07 Apr 2013, 19:04 »
Hi
I can't say for sure, perhaps Oxa could confirm, but I think it works like this:
 
If you have two triggers with no conditions they will both execute on the same refresh.

If you introduce bet related conditions to any trigger, it will have to get the list of bets first. Then the next refresh after that the second trigger will fire. For example:
selections back unmatched greater than 0
requires an updated list of bets

What I am alluding to is the refresh rate of the list of bets will be the biggest delay. You can change that in the settings and match the bets refresh to market refresh.
Please read the following disclaimer with regards to the information you may request and obtain on our forum. This specifically concerns trigger files and various instructions as to how to implement a strategy.

  • All members
  • Posts: 83
Re: trigger/block activation
« Reply #6 on: 07 Apr 2013, 21:59 »
Thanks for all your help Mark.  If Oxa can help further that would be a massive help.

I've been looking into the possibilities of 'trigger number of runs' since you mentioned it.

Is it possible to write a condition comparing the number of runs of two different triggers?  If so how?  I can see that I can choose Trigger from the drop down menu when writing conditions, but how can I add a further Trigger to compare it to?

Thanks for all this help
O

  • Moderator
  • Posts: 3605
*
Re: trigger/block activation
« Reply #7 on: 07 Apr 2013, 22:37 »
Hi
I'm not sure if this is what you want to do, but the attached shows it in very basic terms.

Trigger C will only execute if:
Trigger A number of runs is greater than 0
AND
Trigger B number of runs is greater than 0

you can change any triggers Execute to specific number of times
and you can change number of runs conditions as well
so you can have many variations

An example:

Trigger A executes once only
Trigger B executes 20 times when Trigger A number of runs is equal to 1
Trigger C executes when trigger B number of runs is between 11 and 15
etc.
Please read the following disclaimer with regards to the information you may request and obtain on our forum. This specifically concerns trigger files and various instructions as to how to implement a strategy.

  • All members
  • Posts: 83
Re: trigger/block activation
« Reply #8 on: 07 Apr 2013, 23:01 »
Thanks.  Can I have a condition such as

Trigger B number of runs > Trigger C number of runs

or

Trigger B number of runs - Trigger C number of runs = 1

  • Moderator
  • Posts: 3605
*
Re: trigger/block activation
« Reply #9 on: 07 Apr 2013, 23:30 »
Interesting question. I don't think you can do that as you describe it.

You can do it using a user variable as a counter.
In each trigger add a second action to increment a user variable as a counter.
Value: uservar+1

Then you can do the comparison conditions using the user variables
Please read the following disclaimer with regards to the information you may request and obtain on our forum. This specifically concerns trigger files and various instructions as to how to implement a strategy.

  • All members
  • Posts: 83
Re: trigger/block activation
« Reply #10 on: 11 Apr 2013, 18:19 »
Mark
Thanks for all this.  Setting user variables is no problem.  As you say, just add an action.  But how can I compare them once they are set.  The only conditions dropdown I can find refers to global user variables, but if I am setting user variables by market, how do I access them to compare?

  • Élite
  • Posts: 3698
  • Gender: Male
*
Re: trigger/block activation
« Reply #11 on: 11 Apr 2013, 19:12 »
hi Orzola
you use
and selections trigger expression (variable name) is greater than x

etc
or
and selections trigger expression (variable name) is less than (variable name)
etc

mcbee
Please read the following  disclaimer with regards to the information you may request and obtain on our forum. This specifically concerns trigger files and various instructions as to how to implement a strategy.

  • Moderator
  • Posts: 3605
*
Re: trigger/block activation
« Reply #12 on: 11 Apr 2013, 20:19 »
Hi
Following on from mcbee's post
If for example you made user variables to count the number of times triggers B and C executed as follows:
user variable name: B_counter
user variable name: C_counter

you can use them in conditions like this:
selections trigger expression B_counter - C_counter is equal to 1

selections trigger expression B_counter is greater than C_counter

selections trigger expression B_counter is equal to 0
and selections trigger expression C_counter is greater than 0

etc..
 
Please read the following disclaimer with regards to the information you may request and obtain on our forum. This specifically concerns trigger files and various instructions as to how to implement a strategy.

  • All members
  • Posts: 83
Re: trigger/block activation
« Reply #13 on: 11 Apr 2013, 22:08 »
Thanks both.
I had been wondering what trigger expression was for.

  • All members
  • Posts: 84
Re: trigger/block activation
« Reply #14 on: 29 May 2014, 21:31 »
Hello,

I tried to implement the solution adopted on this tópic but without sucess.

The triggers keep firing at the same time...

Have someone have any other idea?

thank you

 

Please note, BetFair is seems to be currently OFFLINE