1 120
Subscribers
No data24 hours
-57 days
-730 days
Data loading in progress...
Similar Channels
Tags Cloud
Incoming and Outgoing Mentions
---
---
---
---
---
---
Attracting Subscribers
June '25
June '25
+18
in 0 channels
May '25
+22
in 0 channels
Get PRO
April '25
+29
in 0 channels
Get PRO
March '25
+53
in 0 channels
Get PRO
February '25
+192
in 0 channels
Get PRO
January '250
in 0 channels
Get PRO
December '24
+43
in 0 channels
Get PRO
November '24
+72
in 0 channels
Get PRO
October '24
+63
in 0 channels
Get PRO
September '24
+73
in 0 channels
Get PRO
August '24
+56
in 0 channels
Get PRO
July '24
+84
in 0 channels
Get PRO
June '24
+73
in 0 channels
Get PRO
May '24
+44
in 0 channels
Get PRO
April '24
+416
in 0 channels
| Date | Subscriber Growth | Mentions | Channels | |
| 30 June | 0 | |||
| 29 June | 0 | |||
| 28 June | 0 | |||
| 27 June | +1 | |||
| 26 June | 0 | |||
| 25 June | 0 | |||
| 24 June | +1 | |||
| 23 June | 0 | |||
| 22 June | 0 | |||
| 21 June | +1 | |||
| 20 June | 0 | |||
| 19 June | 0 | |||
| 18 June | 0 | |||
| 17 June | +1 | |||
| 16 June | +5 | |||
| 15 June | 0 | |||
| 14 June | +1 | |||
| 13 June | +1 | |||
| 12 June | +2 | |||
| 11 June | 0 | |||
| 10 June | 0 | |||
| 09 June | +1 | |||
| 08 June | 0 | |||
| 07 June | +1 | |||
| 06 June | 0 | |||
| 05 June | 0 | |||
| 04 June | 0 | |||
| 03 June | +2 | |||
| 02 June | +1 | |||
| 01 June | 0 |
Channel Posts
| 2 | +7 ι»ιζ°ηAmazing6.0ζΊη .mq4 | 968 |
| 3 | Forex GOLD Investor mt4.mq4 | 982 |
| 4 | https://www.mql5.com/en/market/product/18272 | 914 |
| 5 | Night Hunter Pro v6.28.mq4 | 915 |
| 6 | Hedging Martingale.mq4 | 1 118 |
| 7 | +4 Last X Bars EA.mq4 | 1 391 |
| 8 | Omid
https://t.me/sh4huEA | 1 640 |
| 9 | SPFX RECOVERY ZONE EA v1.5.mq5 | 1 674 |
| 10 | EA 2050 Pro .mq4 | 1 599 |
| 11 | +3 high profit EA.mq4 | 1 885 |
| 12 | +5 EA Scalping Asia.mq4 | 2 256 |
| 13 | +1 EA_Price_Action.mq4 | 1 754 |
| 14 | +5 EA Scalping Asia.mq4 | 1 461 |
| 15 | News Stopper EA to disable auto trading before and after news events for MT5.
EA features :
π stop auto trading before and after news
π close orders before and after news
π close open orders with custom profit value
π close all charts before news
π option to select custom list of currencies to be checked for news or let the EA automatically detect the currencies from the chart
πoption to get news based on their impact
π2 separate time values for force close and closing open trades with profit
π draws event on chart
π alert and phone notification
π free with no expiry date
π source for the news events is now ForexFactory calendar
π you can now chose to only close orders that are directly effected by the news, for example if there is USD news, only orders and charts that one side of their symbol is USD will get close.
πKeyword specific news option
FREE EA, Indicators > ForexCracked.com | 1 666 |
| 16 | WOLF FOREX SIGNAL EA v 7.00(2)@Amazing_owner.mq4 | 1 889 |
| 17 | PROFITUNITY TRADING EA #sourcecode | 2 448 |
| 18 | NEWS CALENDAR DASHBOARD #sourcecode | 2 421 |
| 19 | //+------------------------------------------------------------------+
//| TREND CROSS WITH ALERT EA.mq5 |
//| Copyright 2024, MetaQuotes Ltd. |
//| https://www.mql5.com |
//+------------------------------------------------------------------+
#property copyright "Copyright 2024, MetaQuotes Ltd."
#property link "https://www.mql5.com"
#property version "1.00"
#include <Trade/Trade.mqh>
CTrade obj_Trade;
int handleTrendCrossInd = INVALID_HANDLE;
double arrow_up[];
double arrow_down[];
//+------------------------------------------------------------------+
//| Expert initialization function |
//+------------------------------------------------------------------+
int OnInit(){
//---
handleTrendCrossInd = iCustom(_Symbol,_Period,
"1. Custom INDICATORS\\Trend-Cross Alert",
14,2,30,2.0,PRICE_CLOSE);
ChartIndicatorAdd(0,0,handleTrendCrossInd);
if (handleTrendCrossInd == INVALID_HANDLE){
Print("ERROR INITIALIZING INDICATOR. REVERTING NOW!");
return (INIT_FAILED);
}
else if (handleTrendCrossInd != INVALID_HANDLE){
Print("SUCCESS ON INDICATOR INITIALIZATION.");
}
ArraySetAsSeries(arrow_up, true);
ArraySetAsSeries(arrow_down, true);
//---
return(INIT_SUCCEEDED);
}
//+------------------------------------------------------------------+
//| Expert deinitialization function |
//+------------------------------------------------------------------+
void OnDeinit(const int reason){
//---
}
//+------------------------------------------------------------------+
//| Expert tick function |
//+------------------------------------------------------------------+
void OnTick(){
//---
if (CopyBuffer(handleTrendCrossInd,4,0,3,arrow_up) < 3){
Print("ERROR GETTING REQUESTED DATA. REVERTING NOW!");
return;
}
if (CopyBuffer(handleTrendCrossInd,5,0,3,arrow_down) < 3){
Print("ERROR GETTING REQUESTED DATA. REVERTING NOW!");
return;
}
int currbars = iBars(_Symbol,_Period);
static int prevbars = currbars;
if (prevbars == currbars) return;
prevbars = currbars;
//Print(arrow_up[1]);
//Print(EMPTY_VALUE," > ",DBL_MAX);
//if (arrow_up[1] != EMPTY_VALUE){
// Print(arrow_up[1]);
//}
const int signalbar = 1;
double Ask = NormalizeDouble(SymbolInfoDouble(_Symbol,SYMBOL_ASK),_Digits);
double Bid = NormalizeDouble(SymbolInfoDouble(_Symbol,SYMBOL_BID),_Digits);
if (arrow_up[signalbar] != EMPTY_VALUE){
Print("ARROW UP = ",NormalizeDouble(arrow_up[signalbar],_Digits+1));
if (PositionsTotal()==0){
obj_Trade.Buy(0.01,_Symbol,Ask,Bid-400*_Point,Bid+500*_Point);
}
}
else if (arrow_down[signalbar] != EMPTY_VALUE){
Print("ARROW DOWN = ",NormalizeDouble(arrow_down[signalbar],_Digits+1));
if (PositionsTotal()==0){
obj_Trade.Sell(0.01,_Symbol,Bid,Ask+400*_Point,Ask-500*_Point);
}
}
}
//+------------------------------------------------------------------+
TREND CROSS WITH ALERT EA #sourcecode | 2 213 |
| 20 | TELEGRAM MQL5 COPY TRADING PART 7B #sourcecode | 1 720 |
