Hi Community,
I am blundering my way around automation and dont have enough knowledge to work thru how this works.
are there any human consultants / members or similar who can fast track me thru some one on one training/instructions via voice.
I am not familiar with the terminology and software in general. Wrong age group.
probably been asked 100 times, but i could not find this in the forum.
thanks in advance. Im in Australia if that matters.
New Member needs human support
-
MrJoeBlack
- Posts: 54
- Joined: Sun Jun 26, 2016 7:58 pm
Do you know what you are trying to achieve?
-
solotrek154
- Posts: 3
- Joined: Sat Nov 15, 2025 4:48 am
I have created an automation. Lay a bet.
now i want to add some functionality so that it calculates the previous loss and increases the next bet to cover the loss and achieve the target profit
A lay Martingale system.
I want to learn how and what all the elements of the Automation mean and how they work.
once i get the system above implemented, i am sure i would want to tweak it with some other smarts.
i have read about signals etc. its double dutch to me. I am missing some basic understandings of how it works.
thank you for your reply. it is encouraging.
now i want to add some functionality so that it calculates the previous loss and increases the next bet to cover the loss and achieve the target profit
A lay Martingale system.
I want to learn how and what all the elements of the Automation mean and how they work.
once i get the system above implemented, i am sure i would want to tweak it with some other smarts.
i have read about signals etc. its double dutch to me. I am missing some basic understandings of how it works.
thank you for your reply. it is encouraging.
-
tryingtotrade
- Posts: 59
- Joined: Sun Oct 15, 2023 11:34 pm
Hey man,
Not an automation expert either but forget about anything martingale, just a terrible staking system only good for gamblers
Not an automation expert either but forget about anything martingale, just a terrible staking system only good for gamblers
-
solotrek154
- Posts: 3
- Joined: Sat Nov 15, 2025 4:48 am
Appreciate the Heads up.
im not a gambler.
it was a starting point.
is it good for a basis with additional rules on top.
that is where i was heading. but dont have the IT skills to understand how to program Bet Angel
im not a gambler.
it was a starting point.
is it good for a basis with additional rules on top.
that is where i was heading. but dont have the IT skills to understand how to program Bet Angel
-
MrJoeBlack
- Posts: 54
- Joined: Sun Jun 26, 2016 7:58 pm
I would do this in Excel but I imagine most people would do this with an automation file.solotrek154 wrote: ↑Sat Nov 15, 2025 7:00 pmI have created an automation. Lay a bet.
now i want to add some functionality so that it calculates the previous loss and increases the next bet to cover the loss and achieve the target profit
A lay Martingale system.
I want to learn how and what all the elements of the Automation mean and how they work.
once i get the system above implemented, i am sure i would want to tweak it with some other smarts.
i have read about signals etc. its double dutch to me. I am missing some basic understandings of how it works.
thank you for your reply. it is encouraging.
Create Stored Values
In your automation file, create stored values such as:
last_stake
cumulative_loss
target_profit
next_stake
You do this using:
Actions → Set/Modify a Stored Value
Example: set target profit at £2:
Name: target_profit
Value: 2
Type: Shared (recommended)
Then, After Each Market Settles, store whether your last lay lost
A Lay loses when the selection wins, so you detect a loss using:
Condition → Signal/Stored Value Condition
or
Condition → Selection’s Last Bet Result is a Loss
Then update your cumulative loss:
Action → Set a Stored Value
cumulative_loss = cumulative_loss + last_stake * (odds - 1)
Bet Angel allows formulas like:
cumulative_loss + (last_stake*(LAY_PRICE-1))
Then, Calculate the Next Martingale Lay Stake
This is the key part.
Your next stake must cover:
cumulative_loss
target_profit
So you set:
next_stake = (cumulative_loss + target_profit) / (LAY_PRICE - 1)
In Bet Angel syntax:
Action → Set a Stored Value
Value:
(cumulative_loss + target_profit) / (lay_price - 1)
lay_price can be inserted using Current Selection Lay Price token.
Then, Place the Lay Bet Using the Calculated Stake
Create a rule:
Rule Type: Place Lay Bet
Stake: Use stored value
“stake = next_stake”
Settings:
Stake type = A Stored Value
Stored value name = next_stake
Then, If the last trade WON, reset everything
If your lay wins, then:
Action → Set Stored Value
cumulative_loss = 0
last_stake = base_stake
This resets the Martingale sequence.
OPTIONAL: Reset on Daily Target
You can use the “Green All Profit” stored value to detect if you’ve hit:
Today’s target
Session target
Then disable rules:
Action → Set Signal “Stop” on Market
Then add “Signal must NOT exist” condition to betting rules.
That's how it could be done. Whether it should be done is possibly a different matter.
