Digit match strategy #136535
Replies: 5 comments 3 replies
|
Thanks for posting in the GitHub Community, @Kevdavid18 ! We’ve moved your post to our Programming Help 🧑💻 category, which is more appropriate for this type of discussion. Please review our guidelines about the Programming Help category for more information. |
|
Hey kevdavid18, What you’re describing is essentially a pattern-detection bot for Deriv’s VIX 100 synthetic index that:
Pseudo-logic: Loop forever: A bot can definitely be built to automate those rules. The main challenge is not the coding itself, but verifying statistically whether the pattern actually has an edge. Synthetic indices are designed to be random, so before risking real money, it’s worth collecting a large sample (thousands of occurrences) and backtesting the strategy to see whether the win rate exceeds the payout break-even rate. If you’re looking to hire someone or post this in a trading-bot community, I’d recommend describing the rules exactly as above, along with a few complete tick-by-tick examples so developers can implement and test the logic correctly. |
This comment was marked as spam.
This comment was marked as spam.
|
I need more clarification on these
*1. X2X Pattern Definition*
Are X2X patterns formed strictly from the last digits of three consecutive
ticks (e.g., 525, 424, 727), or is there any additional rule used to define
them?
*2. LDP (Last Digit Prediction) Timing*
Which exact tick is used to determine the LDP (Last Digit Prediction) — is
it the tick immediately after the X2X pattern completes, or another
specific tick in the sequence?
*3. Source of Decimal Values*
Where exactly do the decimal values (e.g., 27, 35, 42) come from — are they
taken from the price of the pattern tick, the next tick after the pattern,
or another specific tick?
*4. Meaning of “Last Two Decimal Digits”*
Are the “last two decimal digits” referring to the last two digits of the
full tick price (e.g., 1234.27 → 27), or something else?
*5. OP Calculation Logic*
What is the exact logic or reason behind subtracting 20 from the decimal
value to form the OP?
*6. Entry Condition for Trade*
After the OP value appears within 10 ticks, is the trade always a Digit
Match using the LDP, or are there additional conditions before entry?
*7. Signal Validity Rule*
Should the system ignore all signals where OP does not reappear within 10
ticks, or is there any fallback condition?
…On Tue, 9 Jun 2026 at 14:58, MOHAMMAD ILYAS AHMADZAI TRADING COMPANY < ***@***.***> wrote:
99
—
Reply to this email directly, view it on GitHub
<#136535?email_source=notifications&email_token=A2LIR66PT7GJEAY4FMLRUBL4673WNA5CNFSNUABIM5UWIORPF5TWS5BNNB2WEL2ENFZWG5LTONUW63SDN5WW2ZLOOQXTCNZSGM3DENZTUZZGKYLTN5XKOY3PNVWWK3TUUVSXMZLOOSWGM33PORSXEX3DNRUWG2Y#discussioncomment-17236273>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/A2LIR63O7F7DUE4Q66Y46QL4673WNAVCNFSM6AAAAAC2AMZE4GVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTOMRTGYZDOMY>
.
You are receiving this because you commented.Message ID:
***@***.***>
|

Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Select Topic Area
General
Body
Please can anyone make a bot in this strategy !
Help
VIX 100 /Digit match (sniper) strategy.
Duration 1 tick
The method X2X is a pattern that forms the two figures flanking twin number 2 in the middle. Exemple: 525 , 424 , ...
#When it appears (for exemple) xxxx7.27 and then xxxx2.05
Then determine the LDP (Last Digit Prediction ) number 5, after waiting a while to appear xxxx9.07 and open position (OP) the result is WIN.
The conlusion is :
To determine the LDP, have to wait for occurrence of the pattern of X2X, and the last digit after the pattern of X2X used for LDP. Then to determine OP (open position), the last digit reduced 20, so 27 - 20 = 07
Here can already know for OP when it appears xxxxx.07
So to determine OP, every emerging pattern of X2X, last two numbers must be reduced 20, and the result is a signal number to open position.
But if to 10 ticks doesn't appear the result of 20 reduction, better don't do open positions and better wait for the pattern to emerge again.
All reactions