
Re: Supertrend indicators for MT4
121
"Only the price on the chart can show the entrance to the deal..."
hi,mrtools ,atleast add candle display please. thank you inadvanceGanesh wrote: Fri Dec 04, 2020 10:12 pm
hi,mrtools, can you add candle color display and zone color option please
I Think you are too busy, sorry for the disturbance. if possible consider my request. thank you.Ganesh wrote: Sun Dec 06, 2020 1:15 pm
hi,mrtools ,atleast add candle display please. thank you inadvance
Added auto candle display.Ganesh wrote: Tue Dec 08, 2020 11:35 pm
I Think you are too busy, sorry for the disturbance. if possible consider my request. thank you.
Already have all display options.pfxi wrote: Mon Dec 21, 2020 8:41 pm Hi mrtools, great respect and appreciation for the work you do here in the forum, admiration. I have a request if you can аdded auto candle display to Super trend averages 2.6 by Mladen. download/file.php?id=3376307
thanks in advance
Hi and thanks, no I see that there are a lot of options, but there are no candles, there are bars
Don't have the source code for that indicator.pfxi wrote: Mon Dec 21, 2020 9:06 pm
Hi and thanks, no I see that there are a lot of options, but there are no candles, there are bars
I prefer candles![]()
Hi mrtools. here's what I found, Mladen shared it.
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
Try it out.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.