The document outlines a trading strategy for a binary options auto bot using Pine Script. It includes user inputs for trading hours and volume thresholds, as well as indicators like moving averages and RSI for generating buy and sell signals. The strategy also tracks wins and losses, displays results in a table, and sets up alerts for trading signals.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
208 views2 pages
Binary Option Auto Bot v2
The document outlines a trading strategy for a binary options auto bot using Pine Script. It includes user inputs for trading hours and volume thresholds, as well as indicators like moving averages and RSI for generating buy and sell signals. The strategy also tracks wins and losses, displays results in a table, and sets up alerts for trading signals.
// Engulfing bullEngulf = close > open and open[1] > close[1] and close > open[1] and open < close[1] bearEngulf = close < open and open[1] < close[1] and close < open[1] and open > close[1]
hammer = close > open and (high - low) > 3 * (open - close) and (close - low) / (.001 + high - low) > 0.6 shootingStar = open > close and (high - low) > 3 * (open - close) and (high - open) / (.001 + high - low) > 0.6
// Morning Star / Evening Star
morningStar = close[2] < open[2] and doji[1] and close > open eveningStar = close[2] > open[2] and doji[1] and close < open
// === Entry Conditions ===
buySignal = enableTrading and inSession and volValid and bullCross and rsi < oversold and (bullEngulf or hammer or morningStar) sellSignal = enableTrading and inSession and volValid and bearCross and rsi > overbought and (bearEngulf or shootingStar or eveningStar)
alertcondition(buySignal, title="Call Signal Alert", message="Call Signal Triggered!") alertcondition(sellSignal, title="Put Signal Alert", message="Put Signal Triggered!")