• Home
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • User/Email: Password:
  • 8:30am
Menu
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • 8:30am
Sister Sites
  • Metals Mine
  • Energy EXCH
  • Crypto Craft

Options

Bookmark Thread

First Page First Unread Last Page Last Post

Printable Version

Similar Threads

Coding robots and indicators in C# for no charge (cTrader API) 181 replies

Oanda MT4 - Indicators and EAs not showing 1 reply

EAs and indicators relating to moutaki... 22 replies

InterbankFX has loaded its MT4 platform with custom EAs, indicators and scripts 1 reply

Need help to code EAs for MT4 and MT5 2 replies

  • Platform Tech
  • /
  • Reply to Thread
  • Subscribe
  • 30,207
Attachments: I will code your EAs and Indicators for no charge
Exit Attachments

I will code your EAs and Indicators for no charge

  • Last Post
  •  
  • 1 13331334Page 133513361337 2212
  • 1 Page 1335 2212
  •  
  • Post #26,681
  • Quote
  • Nov 7, 2018 6:37am Nov 7, 2018 6:37am
  •  reteid2222
  • Joined Aug 2015 | Status: Vucking good EA coder I am! | 2,302 Posts
Quoting weekiat414
Disliked
hi i have been trading manually for 1 year and it has earn me profits. can someone turn my strategy to a expert advisor? Inbox me.
Ignored
NO chance....cause U r a novice without pm possibilities....
Attached Image
Vucking good EA coder...
1
  • Post #26,682
  • Quote
  • Nov 7, 2018 6:38am Nov 7, 2018 6:38am
  •  reteid2222
  • Joined Aug 2015 | Status: Vucking good EA coder I am! | 2,302 Posts
Quoting weekiat414
Disliked
hi i have been trading manually for 1 year and it has earn me profits. can someone turn my strategy to a expert advisor? Inbox me.
Ignored
But look at your profile....shouted something there...
Attached Image
Vucking good EA coder...
  • Post #26,683
  • Quote
  • Nov 7, 2018 7:01am Nov 7, 2018 7:01am
  •  RayAdam
  • | Joined Oct 2018 | Status: Junior Member | 3 Posts
Hi Everyone,
Could anyone please advise if such indicator exists with the following functionality? or if not help me code one for MT4

Function1 - Automatically saves/overwrite chart template to a file at input location with symbol &Time Frame as the name of the file (e.g EURUSD-M15, EURUSD-H1, EURUSD-H4, EURUSD-D1 etc)

Function2 - Automatically loads chart template from the input location (e.g When Indicator is loaded into EURUSD M15 chart, it loads the template from c:\templates\EURUSD-M15 etc)

Inputs parameters needed
- Template Load Location
- Template Save Location
- Template Save/Overwrite Interval

I use multiple Time Frame separate charts for each symbols and it's really becomes hard to update templates manually for each chart. I lost so much work whenever system restarts due to an update or some windows problem causing MT4 to close abnormally.

Would appreciate if someone could at least steer me to the right direction.

Thanks
  • Post #26,684
  • Quote
  • Nov 7, 2018 7:07am Nov 7, 2018 7:07am
  •  Jagg
  • Joined Oct 2006 | Status: Member | 455 Posts
Quoting Hoffi4201
Disliked
Hi Guys, Looking for an EA which will be used in the DAX. Pretty simple: Open a position at a specific time with a given SL and TP. And also an Option when the Trade should be closed. Could you, please, help me with this?
Ignored
Found that old expert in my folder... untested...
Attached File
File Type: mq4 TimeEntry_and_Close_at_Time.mq4   15 KB | 359 downloads
  • Post #26,685
  • Quote
  • Nov 7, 2018 7:21am Nov 7, 2018 7:21am
  •  burnrubber75
  • | Joined Feb 2018 | Status: Member | 37 Posts
Please can someone help me add a take 50% of order lot size to the code below, I am using 2% of account size to determine lot size for order

Code
Inserted Code
#property copyright ""
#property strict
#define RUNS 20
#define SLEEP 1000
enum ENUM_TIMEFRAMES_MY
  {
   //None    = -1,
   Current = 0,
   M1      = 1,
   M5      = 5,
   M15     = 15,
   M30     = 30,
   H1      = 60,
   H4      = 240,
   D1      = 1440,
   W1      = 10080,
   MN1     = 43200
  };
//--- input parameters
extern ENUM_TIMEFRAMES_MY TF=0; //Time Frame
extern double    PartialTP=20.0; //Take Profit Level
extern double    BreakEvenAdd=5.0; //Pips Above Break Even
extern double    TrailingStop=0.0; //Trailing Stop
extern double    LotPartClose=0.03; //Lots to Close
extern ENUM_TIMEFRAMES_MY TimeFrameFractal=0; //Time Frame Fractals
extern bool      FractalTrail=false; //Fractals Trailing Stop
extern double    PipGap=5.0; //Pip Gap
extern int       Slippage=3;
/*extern*/ int       MagicNumber=0; //manua orders only
bool InitRun;
double mlt=1;
//+------------------------------------------------------------------+
//| expert initialization function                                   |
//+------------------------------------------------------------------+
int init()
  {
//----
   mlt=1;
   
   if(Digits==5 || Digits==3 || Digits==1) //5-digit broker
     {
      mlt *= 10;
      PartialTP *= 10;
      TrailingStop *= 10;
      BreakEvenAdd *= 10;
      PipGap *= 10;
     }
   
   InitRun=true;
   
//----
   return(0);
  }
//+------------------------------------------------------------------+
//| expert deinitialization function                                 |
//+------------------------------------------------------------------+
void OnDeinit(const int reason)
  {
//----
   Comment("");
//----
   return;
  }
//+------------------------------------------------------------------+
//| expert start function                                            |
//+------------------------------------------------------------------+
int start()
  {
//----
   if(PartialTP>0.0)
    {
     BreakEven(MagicNumber,PartialTP,BreakEvenAdd);
     if(LotPartClose>0.0) PartialClose(MagicNumber,PartialTP,LotPartClose/*,Comm*/);
     if(TrailingStop>0.0) TrailingStopRegular(MagicNumber,TrailingStop,0.0,PartialTP);
     if(FractalTrail) TrailingStopFractal(MagicNumber,TimeFrameFractal,PipGap,PartialTP);
    }
   
   InitRun=false;
//----
   return(0);
  }
//+------------------------------------------------------------------+
double ND(double val)
  {
   return(NormalizeDouble(val, Digits));
  }
//+------------------------------------------------------------------+
string ErrorToString(int Error)
  {
   switch(Error)
     {
      case 1: return("No error returned, but the result is unknown.");
      case 2: return("Common error.");
      case 3: return("Invalid trade parameters.");
      case 4: return("Trade server is busy.");
      case 5: return("Old version of the client terminal.");
      case 6: return("No connection with trade server.");
      case 7: return("Not enough rights.");
      case 8: return("Too frequent requests.");
      case 9: return("Malfunctional trade operation.");
      case 64: return("Account disabled.");
      case 128: return("Trade timeout.");
      case 129: return("Invalid price.");
      case 130: return("Invalid stops.");
      case 131: return("Invalid trade volume.");
      case 132: return("Market is closed.");
      case 133: return("Trade is disabled.");
      case 134: return("Not enough money.");
      case 135: return("Price changed.");
      case 136: return("Off quotes.");
      case 137: return("Broker is busy.");
      case 138: return("Requote.");
      case 139: return("Order is locked.");
      case 140: return("Long positions only allowed.");
      case 141: return("Too many requests.");
      case 145: return("Modification denied because order too close to market.");
      case 146: return("Trade context is busy.");
      case 147: return("Expirations are denied by broker.");
      case 148: return("The amount of open and pending orders has reached the limit set by the broker.");
      case 149: return("An attempt to open a position opposite to the existing one when hedging is disabled.");
      case 150: return("An attempt to close a position contravening the FIFO rule.");
      default:  return(StringConcatenate("Error #",Error));
     }
  }
//+------------------------------------------------------------------+
void BreakEven(int MagNum, double BE_Level, double BE_add=0.0)
  {
   if(BE_Level == 0) return;
   int error;
   int total = OrdersTotal();
   for(int i=total-1;i>=0;i--)
     {
     if(!OrderSelect(i,SELECT_BY_POS,MODE_TRADES)) break;
     int Type=OrderType();
     if(OrderSymbol()==Symbol() && OrderMagicNumber()==MagNum && Type<=OP_SELL)
       {
       double OrderSL=ND(OrderStopLoss());
       double OpenPrice=ND(OrderOpenPrice());
       double NewSL=0;
       if(Type==OP_BUY)
         {
          if(ND((Bid-OpenPrice)/Point)>=BE_Level && (OpenPrice>OrderSL || OrderSL==0))
            {
             NewSL=ND(OpenPrice+BE_add*Point);
             if(NewSL>OrderSL || OrderSL==0)
               if(!OrderModify(OrderTicket(),OrderOpenPrice(),ND(NewSL),OrderTakeProfit(),0,Yellow))
                 {error=GetLastError(); Print(Symbol()," Break Even error: ",ErrorToString(error));}
             continue;
            }
         }
       if(Type==OP_SELL)
         {
          if(ND((OpenPrice-Ask)/Point)>=BE_Level && (OpenPrice<OrderSL || OrderSL==0))
            {
             NewSL=ND(OpenPrice-BE_add*Point);
             if(NewSL<OrderSL || OrderSL==0)
               if(!OrderModify(OrderTicket(),OrderOpenPrice(),ND(NewSL),OrderTakeProfit(),0,Yellow))
                 {error=GetLastError(); Print(Symbol()," Break Even error: ",ErrorToString(error));}
             continue;
            }
         }
       }
     }
  }
//+------------------------------------------------------------------+
void PartialClose(int MgcNmb, double _TP, double _Lot/*, string _Comm*/)
{
 int total=OrdersTotal();
 for (int i = total-1; i >= 0; i--)
   if(OrderSelect(i, SELECT_BY_POS))
     {
      int type=OrderType();
      if(OrderSymbol() == Symbol() && OrderMagicNumber() == MgcNmb && type<=OP_SELL && StringFind(OrderComment(),"#")<0)
         {
          if(ND((type==OP_BUY?1:-1)*(OrderClosePrice()-OrderOpenPrice()))>=ND(_TP*Point))
           {
            if (!OrderClose(OrderTicket(), _Lot, OrderClosePrice(), Slippage, clrWhite))
              {int error=GetLastError(); Print(Symbol()," Exit Trade error: ",ErrorToString(error));}
           }
         }
     }
 return;
}
//+------------------------------------------------------------------+
int TrailingStopRegular(int MagNum, double _TrailingStopPip, double _TrailingStopStep, double _TrailingStopTrigger)
  {
   if(_TrailingStopPip == 0) return (0);
   
   int total=OrdersTotal();
   
   for(int i=total-1;i>=0;i--)
     {
     if(!OrderSelect(i,SELECT_BY_POS,MODE_TRADES)) continue;
     int Type=OrderType();
     if(OrderSymbol()==Symbol() && OrderMagicNumber()==MagNum && Type<=OP_SELL)
       {
        double CurStopLoss=OrderStopLoss();
        double OpenPrice=OrderOpenPrice();
        double NewStoploss = 0.0;
        if(Type==OP_BUY) //long
          {
           NewStoploss = Bid - _TrailingStopPip*Point;
           if( (CurStopLoss >= NewStoploss && CurStopLoss != 0.0) || Bid-OpenPrice < _TrailingStopTrigger*Point ) NewStoploss = 0.0;
          }
   
        if(Type==OP_SELL) //short
          {
           NewStoploss = Ask + _TrailingStopPip*Point;
           if( (CurStopLoss <= NewStoploss && CurStopLoss != 0.0) || OpenPrice-Ask < _TrailingStopTrigger*Point ) NewStoploss = 0.0;
          }
   
        if( NewStoploss != 0.0 ) 
          {
           if( MathAbs( CurStopLoss - NewStoploss ) <= Point*_TrailingStopStep ) continue;
           else NewStoploss = NormalizeDouble( NewStoploss, Digits);
           if(!OrderModify(OrderTicket(),OrderOpenPrice(), NewStoploss, OrderTakeProfit(),0/*,Yellow*/))
            {int error=GetLastError(); Print(Symbol()," Modify Order error: ",ErrorToString(error)); continue;}
          }
       }
     }
   return (0);
  }
//+------------------------------------------------------------------+
int TrailingStopFractal(int MagNum, int _TF, double _TrailingStopPip, double _TrailingStopTrigger)
  {
   if(_TrailingStopPip == 0) return (0);
   
   int total=OrdersTotal();
   
   for(int i=total-1;i>=0;i--)
     {
     if(!OrderSelect(i,SELECT_BY_POS,MODE_TRADES)) continue;
     int Type=OrderType();
     if(OrderSymbol()==Symbol() && OrderMagicNumber()==MagNum && Type<=OP_SELL)
       {
        double CurStopLoss=OrderStopLoss();
        double OpenPrice=OrderOpenPrice();
        double NewStoploss = 0.0;
        if(Type==OP_BUY) //long
          {
           NewStoploss = ND(FractalStopLoss(_TF,OP_BUY) - _TrailingStopPip*Point);//Bid - _TrailingStopPip*Point;
           if( (CurStopLoss >= NewStoploss && CurStopLoss != 0.0) || Bid-OpenPrice < _TrailingStopTrigger*Point ) NewStoploss = 0.0;
          }
   
        if(Type==OP_SELL) //short
          {
           NewStoploss = ND(FractalStopLoss(_TF,OP_SELL) + _TrailingStopPip*Point);//Ask + _TrailingStopPip*Point;
           if( (CurStopLoss <= NewStoploss && CurStopLoss != 0.0) || OpenPrice-Ask < _TrailingStopTrigger*Point ) NewStoploss = 0.0;
          }
   
        if( NewStoploss != 0.0 ) 
          {
           if(!OrderModify(OrderTicket(),OrderOpenPrice(), NewStoploss, OrderTakeProfit(),0,clrRed))
            {int error=GetLastError(); Print(Symbol()," Modify Order error: ",ErrorToString(error)); continue;}
          }
       }
     }
   return (0);
  }
//+------------------------------------------------------------------+
double FractalStopLoss(int _tf, int _type)
 {
  int mode=0;
  switch(_type)
   {
    case OP_BUY:  mode=MODE_LOWER; break;
    case OP_SELL: mode=MODE_UPPER; break;
   }
  
  int i=3;
  while(i<iBars(NULL,_tf))
   {
    double fr=iFractals(NULL,_tf,mode,i);
    if(fr>0) return(fr);
    i++;
   }
  
  return(0.0);
 }

Thanks in advance
  • Post #26,686
  • Quote
  • Nov 7, 2018 7:35am Nov 7, 2018 7:35am
  •  whaleback
  • | Joined Mar 2006 | Status: Member | 41 Posts
Quoting smgclap
Disliked
{quote} This indicator repaint badly. let the indicator run on the chart for a time and then take a screen shot and then refresh the chart and take another screen shot. you will see the different
Ignored




But did it repaint while you were watching? /////it repaints the last dot only. The entries are still in the same place. The dots are scattered differently, but that is irrelevant if the entries are still the same.
  • Post #26,687
  • Quote
  • Nov 7, 2018 8:09am Nov 7, 2018 8:09am
  •  Pai
  • | Joined Sep 2016 | Status: Member | 19 Posts | Online Now
Quoting Pai
Disliked
Hey guys, could you help me modified the indicator. mark a label that show the actual value of the upper and lower line when every candle closed. thanks in advance. {file}
Ignored
please could somebody help code this indicator.
mark every precise value of the line corresponding to every candle.
appreciated.
  • Post #26,688
  • Quote
  • Nov 7, 2018 10:22am Nov 7, 2018 10:22am
  •  weekiat414
  • | Joined Oct 2018 | Status: Member | 6 Posts
Quoting reteid2222
Disliked
{quote} But look at your profile....shouted something there... {image}
Ignored
Its good to test out people system tho to see if its better than ur own system. Can't see or test my system statistic in the strategy tester, since i can't code a expert advisor
  • Post #26,689
  • Quote
  • Nov 7, 2018 3:47pm Nov 7, 2018 3:47pm
  •  reteid2222
  • Joined Aug 2015 | Status: Vucking good EA coder I am! | 2,302 Posts
Quoting weekiat414
Disliked
{quote} Its good to test out people system tho to see if its better than ur own system. Can't see or test my system statistic in the strategy tester, since i can't code a expert advisor
Ignored
I ll do it if quick or (intersteding AND very promising)
Attached Image
Vucking good EA coder...
  • Post #26,690
  • Quote
  • Nov 7, 2018 8:36pm Nov 7, 2018 8:36pm
  •  unmaskedluke
  • | Joined May 2014 | Status: Aramaii tii! | 48 Posts
Quoting weekiat414
Disliked
hi i have been trading manually for 1 year and it has earn me profits. can someone turn my strategy to a expert advisor? Inbox me.
Ignored
check inbox
  • Post #26,691
  • Quote
  • Nov 7, 2018 9:17pm Nov 7, 2018 9:17pm
  •  Dingoman-two
  • Joined Aug 2017 | Status: Just a little Aussi Battler | 3,770 Posts
Quoting Metatrader
Disliked
Hey Guys, i want to learn and improve my MQL4 skills. I think the best way to do this is to practice. Unfortunately sometimes I don`t have any nice idea which i can implement in a Expert Advisor / Indicator. So if any of you is interested, please post in this forum your ideas and i will try to implement it into mql4. Andi
Ignored

Hi metatrader,

I am looking to have these two indicators converted from mt4 to mt5 if that is at all possible please,
if not could you recommend someone who can help me.

Attached File
File Type: mq4 ATR_number.mq4   4 KB | 285 downloads


Attached File
File Type: mq4 Average Daily Range Pro Calculator.mq4   27 KB | 291 downloads


Here's thanking you in-advance

Brian Dingoman-two
"As always trade wisely folks,And then with Patience,time will reveal all"
  • Post #26,692
  • Quote
  • Edited Nov 8, 2018 3:28am Nov 7, 2018 11:13pm | Edited Nov 8, 2018 3:28am
  •  Phylo
  • Joined Feb 2012 | Status: Member | 1,700 Posts
Quoting yoko
Disliked
Hi coders, I am looking for a simple indicator which shows the 2 consecutive marubozu candles without tails If you could do that I would be very grateful . . . Thanks in advance.
Ignored
Alert timestamp is local time not server time. Server time can = local time or = ahead or behind.
Attached Image (click to enlarge)
Click to Enlarge

Name: terminal_2018-11-08_05-59-12.png
Size: 8 KB
↓ Consecutive marubozu - few and far between & less so on higher time frames. (to view expanded click image x2 and scroll left-right)
Attached Image (click to enlarge)
Click to Enlarge

Name: z-10.PNG
Size: 87 KB
↓ To check accuracy of marubozu candles expand chart - zoom in
Attached Image (click to enlarge)
Click to Enlarge

Name: terminal_2018-11-08_03-35-04.png
Size: 28 KB
Note: Indicator will set Chart on Foreground = false in order to show marubozu candle highlight (this will override chart properties [see: right click - Properties - Common tab]). Chart on Foreground can be set = true from the Inputs tab if required.

Marubozu Alerts v1a: default - marubozu // second selection - consecutive marubozu only
Marubozu Alerts v1b: default - consecutive marubozu only // second selection - marubozu
Attached Files
File Type: ex4 Marubozu Alerts v2a.ex4   19 KB | 308 downloads
File Type: ex4 Marubozu Alerts v2b.ex4   19 KB | 321 downloads
Posts are not necessary intended for you
  • Post #26,693
  • Quote
  • Nov 7, 2018 11:49pm Nov 7, 2018 11:49pm
  •  phinphin
  • | Joined Nov 2018 | Status: Junior Member | 1 Post
Hello, anyone who can do or has a volume indicator where, if next bar volume is 40% more of the previous bar, show an arrow or any signal at the main chart?
  • Post #26,694
  • Quote
  • Nov 8, 2018 4:27am Nov 8, 2018 4:27am
  •  yoko
  • | Joined Jan 2016 | Status: Member | 63 Posts
Quoting Phylo
Disliked
{quote} Alert timestamp is local time not server time. Server time can = local time or = ahead or behind.{image}↓ Consecutive marubozu - few and far between & less so on higher time frames. (to view expanded click image x2 and scroll left-right){image} ↓ To check accuracy of marubozu candles expand chart - zoom in{image}Note: Indicator will set Chart on Foreground = false in order to show marubozu candle highlight (this will override chart properties [see: right click - Properties - Common tab]). Chart on Foreground can be set = true...
Ignored
Hi Phylo,
THANK YOU VERY MUCH!!! Marubozu Alerts v2b.ex4 is exactly what I need. Perfect job! Symbol changer looks very helpful. Is it possible to get it too? Thanks again!
  • Post #26,695
  • Quote
  • Nov 8, 2018 4:56am Nov 8, 2018 4:56am
  •  Phylo
  • Joined Feb 2012 | Status: Member | 1,700 Posts
Quoting yoko
Disliked
{quote} Hi Phylo, THANK YOU VERY MUCH!!! Marubozu Alerts v2b.ex4 is exactly what I need. Perfect job! Symbol changer looks very helpful. Is it possible to get it too? Thanks again!
Ignored
welcome - symbol changer - https://www.forexfactory.com/showthr...0#post11605990
Posts are not necessary intended for you
  • Post #26,696
  • Quote
  • Nov 8, 2018 9:49am Nov 8, 2018 9:49am
  •  f3n_dy
  • | Joined Jul 2006 | Status: Member | 48 Posts
any body have indicator to give push alert, email, or sms when my entry achieved target equity that i set into x mount that i set..so i can check and close manually.
thanks
  • Post #26,697
  • Quote
  • Nov 8, 2018 11:45am Nov 8, 2018 11:45am
  •  BabakaZama
  • | Joined Jun 2017 | Status: Member | 5 Posts
Can the code master please assist with this ADR indicator and help with removing the circled in red values, I have no use for them, sort of cluttering my chart and draining my ram. I cant seem to be able to select time frames I wanna view THE indicator on, for instance I don't want it visible on the D1, W1 & M1 frames. Thanks a lot hope it wont be to much.
Attached Image (click to enlarge)
Click to Enlarge

Name: xm.jpg
Size: 166 KB
Attached File
File Type: mq4 D1_W1_MN1_Ranges2.mq4   25 KB | 263 downloads
  • Post #26,698
  • Quote
  • Edited Nov 9, 2018 4:36am Nov 8, 2018 9:00pm | Edited Nov 9, 2018 4:36am
  •  Phylo
  • Joined Feb 2012 | Status: Member | 1,700 Posts
As above - https://www.forexfactory.com/showthr...9#post11670899 - with Mobile Push Notification added,

  1. OFF - PopUp - Sound only
  2. Mobile Push notification

  1. A marubozu candle is represented only by a body; it has no wicks or shadows extending from the top or bottom of the candle.
  2. A white marubozu candle has a long white body and is formed when the open equals the low and the close equals the high.
  3. A black marubozu candle has a long black body and is formed when the open equals the high and the close equals the low.

source: https://en.wikipedia.org/wiki/Marubozu

Note: Indicator will set Chart on Foreground = false in order to show marubozu candle highlight (this will override chart properties [see: right click - Properties - Common tab]). Chart on Foreground can be set = true from the Inputs tab if required.

Marubozu Alerts v4a: default - marubozu // second selection - consecutive marubozu only
Marubozu Alerts v4b: default - consecutive marubozu only // second selection - marubozu

Attached Files
File Type: ex4 Marubozu Alerts v4a.ex4   21 KB | 290 downloads
File Type: ex4 Marubozu Alerts v4b.ex4   21 KB | 299 downloads
Posts are not necessary intended for you
  • Post #26,699
  • Quote
  • Edited Nov 9, 2018 4:34am Nov 8, 2018 9:14pm | Edited Nov 9, 2018 4:34am
  •  Phylo
  • Joined Feb 2012 | Status: Member | 1,700 Posts
Tweezers Top & Bottom Alerts -
2 or more consecutive or spaced tops (highs) or bottoms (lows) of equal price value - see internet & video channels for further information -

Note: Steve Nison, author and trader who introduced Japanese candle patterns to Western financial trading, gives descriptive of spaced and consecutive tweezers top & bottom. The indicator deals with consecutive tweezers top & bottom and not tweezers top & bottom spaced apart by non-tweezer candles.
Attached Image (click to enlarge)
Click to Enlarge

Name: terminal_2018-11-08_13-34-56.png
Size: 64 KB

 

  1. OFF - PopUp - Sound only
  2. Mobile Push notification

Alert timestamp is local time not server time. Server time can = local time or = ahead or behind.
Alert images zoomed in max to check correct direction of Tweezers Top & Bottom highlight.

Tweezers Top

Attached Image (click to enlarge)
Click to Enlarge

Name: z-13.PNG
Size: 14 KB
Tweezers Bottom
Attached Image (click to enlarge)
Click to Enlarge

Name: z-15.PNG
Size: 21 KB
Tweezers Top & Bottom
Attached Image (click to enlarge)
Click to Enlarge

Name: z-12.PNG
Size: 16 KB
Note: Indicator will set Chart on Foreground = false in order to show tweezers candle highlight (this will override chart properties [see: right click - Properties - Common tab]). Chart on Foreground can be set = true from the Inputs tab if required.
Attached File
File Type: ex4 Tweezers Tops & Bottom Alerts v1.ex4   23 KB | 522 downloads
Posts are not necessary intended for you
  • Post #26,700
  • Quote
  • Nov 8, 2018 9:19pm Nov 8, 2018 9:19pm
  •  c0mputernick
  • | Joined Dec 2006 | Status: PipMaster in Training.... | 98 Posts
Could someone add push notifications to this indicator please? (at close of candle)
Ive attempted it and could never get it to work.

Thanks for the help.
Attached File
File Type: mq4 HalfTrend-1.02.mq4   6 KB | 298 downloads
  • Platform Tech
  • /
  • I will code your EAs and Indicators for no charge
  • Reply to Thread
    • 1 13331334Page 133513361337 2212
    • 1 Page 1335 2212
15 traders viewing now, 5 are members:
fabio.g
,
jogiLA
,
nickvh1
,
Invisible
,
Mpfuxelelo
  • More
Top of Page
  • Facebook
  • Twitter
About FF
  • Mission
  • Products
  • User Guide
  • Media Kit
  • Blog
  • Contact
FF Products
  • Forums
  • Trades
  • Calendar
  • News
  • Market
  • Brokers
  • Trade Explorer
FF Website
  • Homepage
  • Search
  • Members
  • Report a Bug
Follow FF
  • Facebook
  • Twitter

FF Sister Sites:

  • Metals Mine
  • Energy EXCH
  • Crypto Craft

Forex Factory® is a brand of Fair Economy, Inc.

Terms of Service / ©2021