DownloadRe: Already Converted TradingView Indicators to MT4 Indicators

701
Guna369 wrote: Thu Dec 25, 2025 4:27 pm Hello,

This ICT SCOB indicator works very well and makes it easy to identify entries and reversals. It’s a simple and clean indicator, and I would love to see the SCOB concept available on MT4 charts.

Could you please help convert this TradingView indicator into an MT4 indicator?

Thank you.
Trading View Link [url][/https://www.tradingview.com/script/tnek ... COB-UAlgo/]

[img][/https://www.tradingview.com/x/4Iw1JfWe/]

Guna369 In my Opinion Learning Smart Money Concept is a good trading Strategies That Aspiring traders should learn. Order Blocks Provide tremendous Risk To Rewards Ration 5:1 all the way up 20:1 depending on the Time Frame A Trader decide to use.

01 Since you guys trade OrderBlocks You may be interested in these OrderBlocks Links I given you website for you to review Just in case the order blocks get updated For MT4 & MT5 OB + Void MT5 By TFlab https://tradingfinder.com/products/indi ... -download/


02 Order Block + Void MT4 By TFlab https://tradingfinder.com/products/indi ... -download/


03 StarseedFX Smart Trading Tool MT5 https://www.mql5.com/en/market/product/ ... ile+Seller


04 StarseedFX Smart Trading Tool MT4 https://www.mql5.com/en/market/product/ ... gle.com%2F


04 UNLISTED - Maximizing Profits with StarseedFX Tool


05 Smart Market Structure Concepts MT5 Have Alot Of OB BOS Alerts https://www.mql5.com/en/market/product/ ... ile+Seller


06 Smart Market Structure Concepts MT4 Alot Of OB BOS Alerts https://www.mql5.com/en/market/product/ ... ile+Seller


07 How to Manage Risk When Trading Smart Money Concepts - Simplified Guide


08 Those Who are Taking Prop Firm Challenges & have Multiple MT4 & MT5 Accounts You can place all your trades on One MT4 Account and These EA Will Replicate Your MT4 Trades To All your corresponding MT4 & MT5 Accounts & Vice Versa. Must Download EA's To Both And All Trading Platforms FX Blue Personal Trade Copier https://www.fxblue.com/tools-for-downlo ... ade-copier


09 How to Set Up Free Trade Copier for MT4 or MT5 Trading (FX Blue)


10 Local Trade Copier EA MT5 (Premium) https://www.mql5.com/en/market/product/ ... ile+Seller


11 Local Trade Copier EA MT4 (Premium) https://www.mql5.com/en/market/product/ ... T4+Utility#


12 Local Trade Copier EA MT4-5 - Quick Setup Video
These users thanked the author rainsome9 for the post:
Guna369

Re: TradingView Indicators to MT4 Indicators

702
I wish coder could convert this

https://www.tradingview.com/script/b7Jt ... C-Candles/

Code: Select all

// This Pine Script® code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/
// © LuxmiAI

//@version=6
indicator('Heikin Ashi Colored Regular OHLC Candles', overlay = true, behind_chart = false)

// Calculate Heikin Ashi values
haClose = (open + high + low + close) / 4
var float haOpen = na
haOpen := na(haOpen[1]) ? (open + close) / 2 : (haOpen[1] + haClose[1]) / 2
haHigh = math.max(high, math.max(haOpen, haClose))
haLow = math.min(low, math.min(haOpen, haClose))

// Determine Heikin Ashi candle direction
isBull = haClose > haOpen
isBear = haClose < haOpen

// Assign candle color based on HA direction
bullColor = color.lime
bearColor = color.red
neutralColor = color.gray

candleColor = isBull ? bullColor : isBear ? bearColor : neutralColor

// Plot actual candles with HA color scheme
plotcandle(open, high, low, close, color = candleColor, wickcolor = candleColor, bordercolor = candleColor)

Re: TradingView Indicators to MT4 Indicators

703
Sutatong wrote: Thu Feb 26, 2026 2:14 pm I wish coder could convert this

https://www.tradingview.com/script/b7Jt ... C-Candles/

Code: Select all

// This Pine Script® code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/
// © LuxmiAI

//@version=6
indicator('Heikin Ashi Colored Regular OHLC Candles', overlay = true, behind_chart = false)

// Calculate Heikin Ashi values
haClose = (open + high + low + close) / 4
var float haOpen = na
haOpen := na(haOpen[1]) ? (open + close) / 2 : (haOpen[1] + haClose[1]) / 2
haHigh = math.max(high, math.max(haOpen, haClose))
haLow = math.min(low, math.min(haOpen, haClose))

// Determine Heikin Ashi candle direction
isBull = haClose > haOpen
isBear = haClose < haOpen

// Assign candle color based on HA direction
bullColor = color.lime
bearColor = color.red
neutralColor = color.gray

candleColor = isBull ? bullColor : isBear ? bearColor : neutralColor

// Plot actual candles with HA color scheme
plotcandle(open, high, low, close, color = candleColor, wickcolor = candleColor, bordercolor = candleColor)
I think I've done this before, it must be somewhere in the HA thread. I'll take a look when I get home.
These users thanked the author kvak for the post:
Sutatong
"fear moves faster than greed"

Re: TradingView Indicators to MT4 Indicators

707
Dear friends please convert this Trading view indicator into Mt4 indicator. I already asked help Regarding this Project. There a friend Named BeatleManiaSA helped to use other step indicator like Similar to this it works but not Suitable for me and my system i know we already have many step indicator in our community but This works really well for me and this indicator is heart of my trading System I tried to convert using ChatGpt but lot of errors and mistakes not working well So please Convert this Indicator as same as Trading view Code and also add alert if price bar closed above or below the Step Line Horizontally Thank-you

https://www.tradingview.com/script/Z0Je ... F-MA-Loxx/
If you are not willing to take risk the unusual, you will have to settle for the ordinary.
Don't wait for extraordinary opportunities. Seize common occasions and make them great. Weak men wait for opportunities; strong men make them

Re: TradingView Indicators to MT4 Indicators

708
TRADERSM wrote: Fri Mar 06, 2026 6:17 pm Dear friends please convert this Trading view indicator into Mt4 indicator. I already asked help Regarding this Project. There a friend Named BeatleManiaSA helped to use other step indicator like Similar to this it works but not Suitable for me and my system i know we already have many step indicator in our community but This works really well for me and this indicator is heart of my trading System I tried to convert using ChatGpt but lot of errors and mistakes not working well So please Convert this Indicator as same as Trading view Code and also add alert if price bar closed above or below the Step Line Horizontally Thank-you

https://www.tradingview.com/script/Z0Je ... F-MA-Loxx/
Here you go! The original code has an error (wrong normalization), it's been fixed. I am curious about how you use it vs other MAs.

MT4
MT5 (MT5 is .ex5 as includes proprietary code for colors and resource optimization) +C+
These users thanked the author Cagliostro for the post (total 3):
FredericoA, TRADERSM, MusicMan
"I conjure from shadows and shape fortunes from the unseen. The treasure lies hidden in plain sight, beneath the sunlight." - Cagliostro

Re: TradingView Indicators to MT4 Indicators

709
Cagliostro wrote: Sat Mar 07, 2026 1:45 am Here you go! The original code has an error (wrong normalization), it's been fixed. I am curious about how you use it vs other MAs.

MT4
image_2026-03-06_154122648.png

ATR_Stepped_PDFMA.mq4


MT5
image_2026-03-06_154349766.png
(MT5 is .ex5 as includes proprietary code for colors and resource optimization)
ATR_Stepped_PDFMA.ex5

+C+
hey bro thankyou very much. i use together with Fibonacci 161 i drag fibo level the vertical step point for more filters while other steps are very little or too big but this indi is good for my type of trade and i also use bullbear power,some atr channel bro...
These users thanked the author TRADERSM for the post:
Cagliostro
If you are not willing to take risk the unusual, you will have to settle for the ordinary.
Don't wait for extraordinary opportunities. Seize common occasions and make them great. Weak men wait for opportunities; strong men make them

DownloadRe: TradingView Indicators to MT4 Indicators

710
Hello pro coders and fellow traders. :) I've been using this Trend indicator from TradingView for about two months now, and I've found it to be quite useful. I would really appreciate it if someone could convert it to MT4. I'm not sure if one has already been made, but if one is available, please link it. Thanks.

TREND MAGIC
https://www.tradingview.com/v/kRIjThLZ/

In my 2-3 months of using it, I've found it's very good at confirming a pullback (i.e., when the line changes color, the pullback is valid and you should start looking for an entry).

Code: Select all

//@version=4
study("Trend Magic", shorttitle="TM", overlay=true, format=format.price, precision=2, resolution="")
period=input(20,"CCI period")
coeff=input(1,"ATR Multiplier")
AP=input(5,"ATR Period")
ATR=sma(tr,AP)
src=input(close)
upT=low-ATR*coeff
downT=high+ATR*coeff
MagicTrend=0.0
MagicTrend := cci(src,period)>=0 ? (upT<nz(MagicTrend[1]) ? nz(MagicTrend[1]) : upT) : (downT>nz(MagicTrend[1]) ? nz(MagicTrend[1]) : downT)
color1= cci(src,period)>=0 ? #0022FC : #FC0400
plot(MagicTrend, color=color1, linewidth=3)
alertcondition(cross(close, MagicTrend), title="Cross Alert", message="Price - MagicTrend Crossing!")
alertcondition(crossover(low, MagicTrend), title="CrossOver Alarm", message="BUY SIGNAL!")
alertcondition(crossunder(high, MagicTrend), title="CrossUnder Alarm", message="SELL SIGNAL!")