Version 1.25 2020.11.06
On SFP pattern detection send push notification option added.
You have to configure your Push notifications settings in Tools/Options/Notifications.
Version 1.24 2020.07.07
New features added are intended only for programmers to use indicator in EA. There are 3 buffers added:
• Buffer 0 for signal – returned values can be 1 for buy and 2 for sell
• Buffer 1 for stop loss reference – returned value is of the last price peak
• Buffer 2 for take profit reference – returned value is of the second price peak from the last one
So iCustom indicator in your EA have to look:
iCustom(NULL,0," SFP_Pattern","Algo",0,”Symbol name”,”TF_Period”,0,0)

Where parameters are:
• NULL – current symbol (no matter for output)
• 0 – current timeframe (no matter for output)
• " SFP_Pattern" - indicator name, relative to the root indicators directory (MQL4/Indicators/)
• "Algo" – first parameter of SFP pattern indicator
• 0 – second parameter
• ”Symbol name” – third parameter, enter exact name of the symbol that is shown in Market Watch
• ”TF_Period” – fourth parameter, enter timeframe period you need in the format: “M1”,”M5”, “M15”,”M30”, “H1”,”H4”, “D1”,”W1” or ”MN1”.
• Other SFP_Pattern parameters can be omitted
• 0 – buffer number, can be 0, 1 or 2
• 0 – shift, use only 0
Example how to use:
input string TF_Period="H1"; //Timeframe
input string Symbol_name="EURUSD"; //Symbol name
input double K_ATR_SL=1.5; //Multiplier for stop loss in ATR values
//buy signal
If (iCustom(NULL,0,"SFP_Pattern","Algo",0,Symbol_name,TF_Period,0,0)==1)
{
double StopLoss = iCustom(NULL,0,”SFP_Pattern","Algo",0,Symbol_name,TF_Period,1,0) - K_ATR_SL*iATR(Symbol_name,PERIOD_H1,14,1); //use the same Symbol_name and TF_Period in iATR
double TakeProfit = iCustom(NULL,0,"SFP_Pattern","Algo",0,Symbol_name,TF_Period,2,0);
int result = OrderSend(Symbol(),OP_BUY,volume,Ask,Slippage,NormalizeDouble(StopLoss,Digits),NormalizeDouble(TakeProfit,Digits)," SFP_Pattern",MagicNumber,0,Blue);
}
//sell signal



Version 1.23 2020.03.18
By default indicator will draw pattern on current chart if detected.
An option to mark the place for stop loss in ATR units is added.
Version 1.21 2020.03.05
Some drawing error repaired.
Version 1.2 2020.03.03
Info dashboard is created for SFP patterns. You can choose to show your favorite symbols and time frames. Also you can choose to show alert or send an email when new SFP pattern is detected.
Version 1.1 2019.12.14
On alert send email option added.
You have to configure your email settings in Tools/Options/Email.