binary-com / binary-bot

Visual automation for binary.com
binary-bot.binary.sx
MIT License
232 stars 523 forks source link

Input a certain sequence to take a trade (bot) ? #1919

Closed buckman1974 closed 5 years ago

buckman1974 commented 5 years ago

Is there such a bot whereby on Rise/Fall, that I could input many or multiple sequences of numbers in order to take a trade in a certain direction?

All on the last digit only so on Vol 100, XXXX.XZ

Ie: So when Z = red 4, red 8, blue 3, red 9, = FALL??

I have a bot that currently can stipulate ONE Digit ie: When X6 appears, = Rise

But not a sequence of 3 to 6 numbers

Is this possible?

Thank you

ceakuk commented 5 years ago

just use if statement. everything is possible with either plain if statements creating a list of diggits say riselist =[1,2,3,4,5] falllist =[6,7,8,9] loop through riselist and if last digit is in that list, exit and set trade to rise same for fallinglist however this strategy is pure gambling. there is no correlation between last diggit and direction of the candlesticks

you can as well sa direction =random(0,9) if(direction is even) then rise and if direction is odd then sell to win with pure gamble you need a big account because you can win many time and also loose infinitely many times in a row

buckman1974 commented 5 years ago

Thank you. So where do I add this 'if' statement list?

Do you have a screenshot of how to do this: (or an XML maybe?)

riselist =[1,2,3,4,5] falllist =[6,7,8,9] loop through riselist ?

thank you

ceakuk commented 5 years ago

send me your xml and ill put it for you

buckman1974 commented 5 years ago

Do we have PM on here? so that i can send this?

ceakuk commented 5 years ago

say last digit a= 123.45 can you exp lain agai so that i send to you a small blocky with just that is it that say if the exit is abcd.xy then you want to get 1st decimal =x 2nd decimal = y ones =d tens =c hundreds =b thousands = a

ceakuk commented 5 years ago

or do you want a predifined list of numbers to be associated with rise/put?

ceakuk commented 5 years ago

you can publicly share the code unless you already hit a jackpot that you are very sure it works so well that you need to sell it. or use wishpool.one@gmail.com

buckman1974 commented 5 years ago

I would like a predifined list of numbers to be associated with rise/put if I can?

So maybe just the last digit on Vol 100, so XXXX.Xz (so digit z) and digits like

blue 4, blue 8, blue 2 = RISE? red 9, red 4, red 0 = Fall Red 2, Red 5, Red 1 = rise

I am not sure its possible? - I will email you the XML and see if you can do this?

claytonliotti commented 5 years ago

interesting you can share

navneetsinh commented 5 years ago

Is there such a bot whereby on Rise/Fall, that I could input many or multiple sequences of numbers in order to take a trade in a certain direction?

All on the last digit only so on Vol 100, XXXX.XZ

Ie: So when Z = red 4, red 8, blue 3, red 9, = FALL??

I have a bot that currently can stipulate ONE Digit ie: When X6 appears, = Rise

But not a sequence of 3 to 6 numbers

Is this possible?

Thank you

Opera Snapshot_2019-09-13_182119_bot binary com

navneetsinh commented 5 years ago

I would like a predifined list of numbers to be associated with rise/put if I can?

So maybe just the last digit on Vol 100, so XXXX.Xz (so digit z) and digits like

blue 4, blue 8, blue 2 = RISE? red 9, red 4, red 0 = Fall Red 2, Red 5, Red 1 = rise

I am not sure its possible? - I will email you the XML and see if you can do this?

Opera Snapshot_2019-09-13_182232_bot binary com

buckman1974 commented 5 years ago

This is great thank you. However when I mentioned the above digits, it was in different LDP's that appear (Not sure if i explained myself clearly here)

So : when I mention red 3, red 7, red 9 = Rise

red XXXX.X6 red XXXX.X3 <<<< blue XXXX.X8 blue XXXX.X8 red XXXX.X2 red XXXX.X7 <<<< blue XXXX.X6 red XXXX.X9 <<<< = RISE****

Does this make any sense? and is this what the coding above is doing?

navneetsinh commented 5 years ago

This is great thank you. However when I mentioned the above digits, it was in different LDP's that appear (Not sure if i explained myself clearly here)

So : when I mention red 3, red 7, red 9 = Rise

red XXXX.X6 red XXXX.X3 <<<< blue XXXX.X8 blue XXXX.X8 red XXXX.X2 red XXXX.X7 <<<< blue XXXX.X6 red XXXX.X9 <<<< = RISE****

Does this make any sense? and is this what the coding above is doing?

how many last ticks for analysis?

buckman1974 commented 5 years ago

Erm not sure, maybe 20 or 25? but i suppose if there was a field for this, I could change this accordingly, to 10 or more? and experiment?

navneetsinh commented 5 years ago

This is great thank you. However when I mentioned the above digits, it was in different LDP's that appear (Not sure if i explained myself clearly here) So : when I mention red 3, red 7, red 9 = Rise red XXXX.X6 red XXXX.X3 <<<< blue XXXX.X8 blue XXXX.X8 red XXXX.X2 red XXXX.X7 <<<< blue XXXX.X6 red XXXX.X9 <<<< = RISE**** Does this make any sense? and is this what the coding above is doing?

how many last ticks for analysis?

This is Opera Snapshot_2019-09-13_190410_bot binary com without any limit not tested just created blocks as per condition

navneetsinh commented 5 years ago

Erm not sure, maybe 20 or 25? but i suppose if there was a field for this, I could change this accordingly, to 10 or more? and experiment?

I think it can't work from last 20 or 25 ticks result confirm the trade not to sure if first 2 conditions confirm within selected ticks and the third condition is not confirm than calculation goes wrong and all condition will go false

buckman1974 commented 5 years ago

Ok thank you! Is it possible to get an .XML of this that you built above?

navneetsinh commented 5 years ago

Ok thank you! Is it possible to get an .XML of this that you built above?

@buckman1974 @buckman1974.zip

buckman1974 commented 5 years ago

Thank you for all your help here, even though this just trades constantly without looking at any of the conditions of the figures?

I understand how hard this must be to program, so as my head is fried right now, I may look another time :)

claytonliotti commented 5 years ago

that would be whatever

RED COLOR HIGH TREND Numbers are decreasing = 987654321 LOW TREND numbers are increasing = 123456789

BLUE COLOR HIGH TREND Numbers are increasing = 123456789 LOW TRENDS are decreasing = 987654321

ceakuk commented 5 years ago

@navneetsinh what do you mean by red and blue i know is higherhigh and red is lowerlow but i dont know for how many ticks.

its not given directly in the api but if you know how many ticks then you can easily compute for loop to get whats the value of blue(higherhigh) and red (lowerlow)

or maybe i don't get your question well Unbenannt

navneetsinh commented 5 years ago

@navneetsinh what do you mean by red and blue i know is higherhigh and red is lowerlow but i dont know for how many ticks.

its not given directly in the api but if you know how many ticks then you can easily compute for loop to get whats the value of blue(higherhigh) and red (lowerlow)

or maybe i don't get your question well Unbenannt

@ceakuk It contain last 21 tick

kjsanjeewa commented 3 years ago

Set the Last Digit Prediction 0 and Price Bar count the - - - - -.0 - then Open Purchase Digit Differs Order with the this same setting.

automatically change LDP and open trade with the ----.0- this no. Ex. LDP 0 price bar ----.0- open differ LDP 1 price bar ----.1- open differ LDP 2 price bar ----.2- open differ LDP 3 price bar ----.3- open differ LDP 4 price bar ----.4- open differ LDP 5 price bar ----.5- open differ LDP 6 price bar ----.6- open differ LDP 7 price bar ----.7- open differ LDP 8 price bar ----.8- open differ LDP 9 price bar ----.9- open differ

Stake 1.1 Martingle add the 11 Take Profit, Stop Loss Screenshot 2020-11-27 21 10 17 - Copy

IQBinary commented 3 years ago

Set the Last Digit Prediction 0 and Price Bar count the - - - - -.0 - then Open Purchase Digit Differs Order with the this same setting.

automatically change LDP and open trade with the ----.0- this no. Ex. LDP 0 price bar ----.0- open differ LDP 1 price bar ----.1- open differ LDP 2 price bar ----.2- open differ LDP 3 price bar ----.3- open differ LDP 4 price bar ----.4- open differ LDP 5 price bar ----.5- open differ LDP 6 price bar ----.6- open differ LDP 7 price bar ----.7- open differ LDP 8 price bar ----.8- open differ LDP 9 price bar ----.9- open differ

Stake 1.1 Martingle add the 11 Take Profit, Stop Loss Screenshot 2020-11-27 21 10 17 - Copy

iqbinarybot@gmail.com

kjsanjeewa commented 3 years ago

Set the Last Digit Prediction 0 and Price Bar count the - - - - -.0 - then Open Purchase Digit Differs Order with the this same setting. automatically change LDP and open trade with the ----.0- this no. Ex. LDP 0 price bar ----.0- open differ LDP 1 price bar ----.1- open differ LDP 2 price bar ----.2- open differ LDP 3 price bar ----.3- open differ LDP 4 price bar ----.4- open differ LDP 5 price bar ----.5- open differ LDP 6 price bar ----.6- open differ LDP 7 price bar ----.7- open differ LDP 8 price bar ----.8- open differ LDP 9 price bar ----.9- open differ Stake 1.1 Martingle add the 11 Take Profit, Stop Loss Screenshot 2020-11-27 21 10 17 - Copy

iqbinarybot@gmail.com

Sir you can make a this bot?

Moh201x commented 3 years ago

Anyone has the xxxx.xz bot?