Re: Supertrend indicators for MT4

129
mrtools wrote: Tue Dec 22, 2020 2:28 am

Don't have the source code for that indicator.
Hi mrtools. here's what I found, Mladen shared it.
Mladen - "Here is a complete code that allows you ta have proper enums and correct parameters for the SuperTrend averages - version 2.6"

Code: Select all

enum enPrices
{
   pr_close,      // Close
   pr_open,       // Open
   pr_high,       // High
   pr_low,        // Low
   pr_median,     // Median
   pr_typical,    // Typical
   pr_weighted,   // Weighted
   pr_average,    // Average (high+low+open+close)/4
   pr_medianb,    // Average median body (open+close)/2
   pr_tbiased,    // Trend biased price
   pr_tbiased2,   // Trend biased (extreme) price
   pr_haclose,    // Heiken ashi close
   pr_haopen ,    // Heiken ashi open
   pr_hahigh,     // Heiken ashi high
   pr_halow,      // Heiken ashi low
   pr_hamedian,   // Heiken ashi median
   pr_hatypical,  // Heiken ashi typical
   pr_haweighted, // Heiken ashi weighted
   pr_haaverage,  // Heiken ashi average
   pr_hamedianb,  // Heiken ashi median body
   pr_hatbiased,  // Heiken ashi trend biased price
   pr_hatbiased2  // Heiken ashi trend biased (extreme) price
};
enum enCalcType
{
   st_atr, // Use atr
   st_std, // Use standard deviation
   st_ste, // Use standard error
   st_sam, // Custom strandard deviation - with sample correction
   st_nos  // Custom strandard deviation - without sample correction
};
enum enMaTypes
{
   ma_adxvma,  // Adxvma
   ma_ahr,     // Ahrens moving average
   ma_alxma,   // Alexander moving average - ALXMA
   ma_dema,    // Double exponential moving average - DEMA
   ma_dsema,   // Double smoothed exponential moving average - DSEMA
   ma_emas,    // Ema derivative - EMAD
   ma_ema,     // Exponential moving average - EMA
   ma_hull,    // Hull moving average - HMA
   ma_ie2,     // IE/2
   ma_ilinr,   // Integral of linear regression slope
   ma_itl,     // Instantaneous trendline
   ma_lagg,    // Laguerre filter
   ma_lead,    // Leader exponential moving average
   ma_linr,    // Linear regression value - LSMA
   ma_lwma,    // Linear weighted moving average - LWMA
   ma_mcg,     // McGinley Dynamic
   ma_mcma,    // McNicholl ema
   ma_nlma,    // Non lag moving average
   ma_pwma,    // Parabolic weighted moving average - PWMA
   ma_rmta,    // Recursive moving trendline - RMTA
   ma_sma,     // Simple moving average - SMA
   ma_sid,     // Simple decycler - SDEC
   ma_sine,    // Sine weighted moving average
   ma_smma,    // Smoothed moving average - SMMA
   ma_smoo,    // Smoother
   ma_ssm,     // Super smoother
   ma_b3p,     // Three pole Ehlers Butterworth
   ma_s3p,     // Three pole Ehlers smoother
   ma_tma,     // Triangular moving average - TMA
   ma_tema,    // Tripple exponential moving average - TEMA
   ma_b2p,     // Two pole Ehlers Butterworth
   ma_s2p,     // Two pole Ehlers smoother
   ma_vema,    // Volume weighted ema - VEMA
   ma_vwma,    // Volume weighted moving average - VWMA
   ma_zldema,  // Zero lag dema
   ma_zlma,    // Zero lag moving average
   ma_zltema   // Zero lag tema
};
enum enTimeFrames
{
   tf_cu  = 0,              // Current time frame
   tf_m1  = PERIOD_M1,      // 1 minute
   tf_m5  = PERIOD_M5,      // 5 minutes
   tf_m15 = PERIOD_M15,     // 15 minutes
   tf_m30 = PERIOD_M30,     // 30 minutes
   tf_h1  = PERIOD_H1,      // 1 hour
   tf_h4  = PERIOD_H4,      // 4 hours
   tf_d1  = PERIOD_D1,      // Daily
   tf_w1  = PERIOD_W1,      // Weekly
   tf_mb1 = PERIOD_MN1,     // Monthly
   tf_cus = 12345678        // Custom time frame
};
enum enIterpolation
{
   int_noint, // No interpolation
   int_line,  // Linear interpolation
   int_quad   // Quadratic interpolation
};
enum enDisplay
{
   en_lin,  // Display line
   en_his,  // Display colored bars
   en_all,  // Display colored lines and bars
   en_lid,  // Display lines with dots
   en_hid,  // Display colored bars with dots
   en_ald,  // Display colored lines and bars with dots
   en_dot   // Display dots
};

extern enTimeFrames   TimeFrame       = tf_cu;     // Time frame
extern int            TimeFrameCustom = 0;         // Custom time frame to use (if custom time frame used)
extern int            avgPeriod       = 10;        // Average period
extern enMaTypes      avgMethod       = ma_ema;    // Average method    
extern enPrices       appliedPrice    = pr_median; // Price to use
extern bool           Double          = false;     // Double smoothed average?
extern bool           Adaptive        = false;     // Adaptive average?
extern enCalcType     Type            = st_atr;    // Calculate using :
extern double         Filter          = 0;         // Filter to use for filtering (<=0 - no filtering)
extern int            atrPeriod       = 50;        // Atr/err/dev period
extern double         atrMultiplier   = 2.0;       // Atr/err/dev multplier
extern enDisplay      DisplayType     = en_lin;    // Display type
extern int            LinesWidth      = 3;         // Lines width (when lines are included in display)
extern int            BarsWidth       = 1;         // Bars width (when bars are included in display)
extern bool           alertsOn        = true;      // Turn alerts on
extern bool           alertsOnCurrent = false;     // Alerts on current (still opened) bar
extern bool           alertsMessage   = true;      // Alerts should show pop-up message
extern bool           alertsSound     = false;     // Alerts should play alert sound
extern bool           alertsPushNotif = false;     // Alerts should send push notification
extern bool           alertsEmail     = false;     // Alerts should send email
extern int            ArrowCodeUp     = 159;       // Arrow code up
extern int            ArrowCodeDn     = 159;       // Arrow code down
extern double         ArrowGapUp      = 0.5;       // Gap for arrow up        
extern double         ArrowGapDn      = 0.5;       // Gap for arrow down
extern bool           ArrowOnFirst    = true;      // Arrow on first bars
extern enIterpolation Interpolate     = int_line;  // Interpolating method when using multi time frame mode

Re: Supertrend indicators for MT4

130
thomdel wrote: Tue Dec 29, 2020 3:07 pm @mrtools
Respected Sir,

Request you to Please Add : 1) Display Candles & 2) Shadow Colour / Width to Indi : SuperTrend nrp new format (mtf + arrows + alerts)
( FYI : These options available in super trend averages earlier[/u] : viewtopic.php?p=1295424610#p1295424610 )

Please do the needful if you find these options / features useful.
Please See Attachment files for options found in other indi *


Thanks for your Efforts, Kindness & Shares.
Thanks. Thanks. Thanks.
Try it out.
These users thanked the author mrtools for the post (total 13):
thomdel, Jimmy, rudiarius, Thangarasu, Skyold, QSD, Rox, myrx, michaelB, Dego, pipsquirrel, 太虚一毫, Jedidiah


Who is online

Users browsing this forum: ChatGPT [Bot], DVanAssen, Narutopips, sunmetal, Telegram [Bot] and 112 guests