Fruitfella / ROBOT-binary

Membuat robot opsi biner yang profitable dan rendah resiko
79 stars 115 forks source link

ROBOT-binary

Ayo kita membuat robot opsi biner yang profitable dan rendah resiko!

I sometimes posted my scripts on My Gists, but due to my lack of knowledge and experience in github and gists (and scripting lol), I accidentally posted it as secret gists. therefore you maybe unable to see most of it. I'm too lazy to move it to public gists, so...
Don't worry though, I posted the links here, so you can access it.

*I decided to put my scrypts here :)


READ THIS FIRST

  1. To download the scripts, just right click on the link (script's name) then click Save linked content as.. , make sure the file type is xml then click Save.
    untitled-2

  2. Load the scripts on https://bot.binary.com/bot.html by clicking Load new blocks (xml file) the one with folder icon on the right screen, below your account balance.

  3. Once the green "Blocks are loaded successfully" notification appear on the bottom-right of the page, you can take the new blocks (the tools) from menu Advanced -> Functions and use it on your bot.
    untitled-3

*Good luck with your bot! 🎆


Please note this : Sometimes (frequently) I put number in front of block's name such as (1) FRUITFELLA MANAGEMENT or (4) FRUITFELLA Trade again . This number means that you must put these block in the main block with the same number. You should noticed that all the 4 main blocks has number Also I give number (5) to the block that must be put in This block called on every tick
note


MONEY MANAGEMENT

They said that the most important factor separating the seasoned traders from the amateurs is Money Management. How so? Dont ask me, it wasn't me who said that!


Martingale

The system's mechanics involve an initial bet; however, each time the bet becomes a loser, the wager is doubled such that, given enough time, one winning trade will make up all of the previous losses.

Example :

Your Bet Wager Flip Results Profit/Loss Account Equity
Heads $ 1 Heads $ 1 $11
Heads $ 1 Tails $ (1) $10
Heads $ 2 Tails $ (2) $8
Heads $ 4 Heads $ 4 $12

Assume that you have $10 to wager, starting with a first wager of $1. You bet on heads, the coin flips that way and you win $1, bringing your equity up to $11. Each time you are successful, you continue to bet the same $1 until you lose. The next flip is a loser, and you bring your account equity back to $10. On the next bet, you wager $2 hoping that if the coin lands on heads, you will recoup your previous losses and bring your net profit and loss to zero. Unfortunately, it lands on tails again and you lose another $2, bringing your total equity down to $8. So, according to martingale strategy, on the next bet you wager double the prior amount to $4. Thankfully, you hit a winner and gain $4, bringing your total equity back up to $12. As you can see, all you needed was one winner to get back all of your previous losses.

Well, thats how common martingale. As for my martingale, its a bit different but still with the same concept.

Download martingale :

FRUITFELLA's Martingale Ver.2.1
martingale2
FRUITFELLA's Martingale Ver.3.0
Requested by Cadet21
martingale3

Compound Interest

Basically its adding the prev profit into the next stake. By doing so we could get a bigger profit if we win the next bet and would only loose the initial bet if we loss. Example : your money is $10

Bet Stake Result Profit/Loss Money
Head 1 Tail -1 9
Head 1 Head 1 10
Head 2 Tail -2 8
Head 1 Head 1 9
Head 2 Head 2 11
Head 4 Head 4 15

Download Compound Management :

FRUITFELLA's Compound Management Ver.1.0
Requested by falsinalves
untitled

CANDLE ANALYSIS

FRUITFELLA's CANDLE PERCENTAGE
Example : purchase fall if current candle's upper shadow is bigger/longer than candle's body
capture
FRUITFELLA's NEW CANDLE
Example : purchase rise if candle is new
cin
FRUITFELLA's NEW CANDLE 2
Detecting a new candle a little faster than the prev version
Example : purchase rise if candle is new
capture
FRUITFELLA's Trend Direction
This tool check the the direction of the market in given period.
Example : purchase rise if trend of 5 minutes candle is up and purchase fall if down
picture01
FRUITFELLA's EMA Trend
This tool check the the direction of the market using 3 Emas. falsinalves' request
Example : purchase rise if trend is up and purchase fall if down.

"Number of list" is for how many candles are count on calculation, its better to make it as higher as possible for accuracy, but too high will slowing the bot. Fruitfella UP-TREND (Smooth) and Fruitfella DOWN-TREND (Smooth) are for detecting strong trend (experiment) | | capture |

FRUITFELLA's 3 Candles with same color
1# fixed 17 Jul 2017, 22.06 GMT+7
This is most wanted tool
Example : purchase rise if 3 recent candles are greens (up) and purchase fall if reds (down)
picture01
FRUITFELLA's WEIGHTED MOVING AVERAGE
this indicator were requested by mnaseem
Example : purchase rise if the current price is higher than WMA
untitled
FRUITFELLA's CROSS-Lines
this indicator check a crossing between 2 lines (indicators), input data must be in form of "list" or "array"
Example : purchase rise when the price crossing up EMA array 10 and purchase fall when crossing down
f-cross
FRUITFELLA's Highest-Lowest Candle
this indicator check the highest and the lowest candle in given period, started from the previous candle (ignores the current candle)
Example : purchase rise when the price is higher than the highest candle in 3 previous candles
capture
FRUITFELLA's Hull Moving Averages
this is Hull Moving Averages indicator, you know what it is right?
note : you'll also get WMA (the base for Hull MA) from this tools, you can just ignore it
Example : purchase rise when the price is higher than Hull MA
capture

TICK ANALYSIS

FRUITFELLA's Trend Direction
This tool check the direction of the market in given period.
Example : purchase rise if trend is up and purchase fall if trend is down
untitled
FRUITFELLA's Last Digit Analyzer
1# revised 10 Sep 2017, 14:00 GMT+7
This tool create a list of Last Digits from x recent ticks. It also check the most and the least frequent Last Digit
capture
FRUITFELLA's Last Digit Analyzer Ver.2.0
Now that there is Last Digit List block, things are easier :)
untitled