Ticaret robotlarını ücretsiz olarak nasıl indirebileceğinizi izleyin
Bizi Telegram üzerinde bulun!
Fan sayfamıza katılın
Komut dosyasını ilginç mi buldunuz?
Öyleyse bir link gönderin -
başkalarının da faydalanmasını sağlayın
Komut dosyasını beğendiniz mi? MetaTrader 5 terminalinde deneyin
Uzman Danışmanlar

Breakthrough volatility - MetaTrader 4 için Uzman Danışman

[Silindi]
Görüntülemeler:
11654
Derecelendirme:
(14)
Yayınlandı:
2019.04.03 12:48
Güncellendi:
2019.04.25 16:32
Bu koda dayalı bir robota veya göstergeye mi ihtiyacınız var? Freelance üzerinden sipariş edin Freelance'e git

"Breakthrough volatility" breakdown robot scalper. Opens positions at break of volatility of the previous period (week, day, 4H and so on). The difference from others is that it is not the High / Low of the previous period that is breaking through, but the volatility (in points). Often, transactions are closed in just a minute, which means that at the moment of a breakout, the price is very active. This is especially noticeable on the daily timeframe.

// ---
bool op_buy_sig()
{
        if((((e_High() - e_Low()) > (e_High_1() - e_Low_1())) && ((e_High() - e_Low()) < ((e_High_1() - e_Low_1()) + (2 * Point() * K_DIG)))) && (e_Close() > e_Open()))
                return true;
        // ---
        return false;
}
// ---
bool op_sell_sig()
{
        if((((e_High() - e_Low()) > (e_High_1() - e_Low_1())) && ((e_High() - e_Low()) < ((e_High_1() - e_Low_1()) + (2 * Point() * K_DIG)))) && (e_Close() < e_Open()))
                return true;
        // ---
        return false;
}
Auto Stop And TakeProfit Auto Stop And TakeProfit

This is a simple EA that automatically places Stops and TakeProfit on opened orders .

Cycle Lines Cycle Lines

With "Cycle Lines" EA you can draw Cycle Lines on the chart and trade with price breakthrough,has 3 buttons for manual trading and allows to predetermine trailing stoploss & take profit, open and close all trades at once.

PremiumPivot PremiumPivot

The indicator plots Pivot levels for 3 custom periods on chart.

Fibonacci Time Zones Fibonacci Time Zones

With "Fibonacci Time Zones" EA you can draw Fibonacci Time Zones on the chart and trade with price breakthrough,has 3 buttons for manual trading and allows to predetermine trailing stoploss & take profit, open and close all trades at once.