[phpBB Debug] PHP Warning: in file [ROOT]/ext/sitesplat/bbseo/event/harvester.php on line 14: Undefined array key "user_id"
[phpBB Debug] PHP Warning: in file [ROOT]/ext/sitesplat/bbseo/event/harvester.php on line 14: Undefined array key "username"
[phpBB Debug] PHP Warning: in file [ROOT]/ext/sitesplat/bbseo/event/harvester.php on line 14: Undefined array key "user_id"
[phpBB Debug] PHP Warning: in file [ROOT]/ext/sitesplat/bbseo/event/harvester.php on line 14: Undefined array key "username"
[phpBB Debug] PHP Warning: in file [ROOT]/ext/sitesplat/bbseo/event/harvester.php on line 14: Undefined array key "user_id"
[phpBB Debug] PHP Warning: in file [ROOT]/ext/sitesplat/bbseo/event/harvester.php on line 14: Undefined array key "username"
[phpBB Debug] PHP Warning: in file [ROOT]/ext/sitesplat/bbseo/event/harvester.php on line 14: Undefined array key "user_id"
[phpBB Debug] PHP Warning: in file [ROOT]/ext/sitesplat/bbseo/event/harvester.php on line 14: Undefined array key "username"
[phpBB Debug] PHP Warning: in file [ROOT]/ext/sitesplat/bbseo/event/harvester.php on line 14: Undefined array key "user_id"
[phpBB Debug] PHP Warning: in file [ROOT]/ext/sitesplat/bbseo/event/harvester.php on line 14: Undefined array key "username"
[phpBB Debug] PHP Warning: in file [ROOT]/ext/sitesplat/bbseo/event/harvester.php on line 14: Undefined array key "user_id"
[phpBB Debug] PHP Warning: in file [ROOT]/ext/sitesplat/bbseo/event/harvester.php on line 14: Undefined array key "username"
[phpBB Debug] PHP Warning: in file [ROOT]/ext/sitesplat/bbseo/event/harvester.php on line 14: Undefined array key "user_id"
[phpBB Debug] PHP Warning: in file [ROOT]/ext/sitesplat/bbseo/event/harvester.php on line 14: Undefined array key "username"
[phpBB Debug] PHP Warning: in file [ROOT]/ext/sitesplat/bbseo/event/harvester.php on line 14: Undefined array key "user_id"
[phpBB Debug] PHP Warning: in file [ROOT]/ext/sitesplat/bbseo/event/harvester.php on line 14: Undefined array key "username"
[phpBB Debug] PHP Warning: in file [ROOT]/ext/sitesplat/bbseo/event/harvester.php on line 14: Undefined array key "user_id"
[phpBB Debug] PHP Warning: in file [ROOT]/ext/sitesplat/bbseo/event/harvester.php on line 14: Undefined array key "username"
[phpBB Debug] PHP Warning: in file [ROOT]/ext/sitesplat/bbseo/event/harvester.php on line 14: Undefined array key "user_id"
[phpBB Debug] PHP Warning: in file [ROOT]/ext/sitesplat/bbseo/event/harvester.php on line 14: Undefined array key "username"
[phpBB Debug] PHP Warning: in file [ROOT]/ext/sitesplat/bbseo/event/harvester.php on line 14: Undefined array key "user_id"
[phpBB Debug] PHP Warning: in file [ROOT]/ext/sitesplat/bbseo/event/harvester.php on line 14: Undefined array key "username"
[phpBB Debug] PHP Warning: in file [ROOT]/ext/sitesplat/bbseo/event/harvester.php on line 14: Undefined array key "user_id"
[phpBB Debug] PHP Warning: in file [ROOT]/ext/sitesplat/bbseo/event/harvester.php on line 14: Undefined array key "username"
[phpBB Debug] PHP Warning: in file [ROOT]/ext/sitesplat/bbseo/event/harvester.php on line 14: Undefined array key "user_id"
[phpBB Debug] PHP Warning: in file [ROOT]/ext/sitesplat/bbseo/event/harvester.php on line 14: Undefined array key "username"
[phpBB Debug] PHP Warning: in file [ROOT]/ext/sitesplat/bbseo/event/harvester.php on line 14: Undefined array key "user_id"
[phpBB Debug] PHP Warning: in file [ROOT]/ext/sitesplat/bbseo/event/harvester.php on line 14: Undefined array key "username"
[phpBB Debug] PHP Warning: in file [ROOT]/ext/sitesplat/bbseo/event/harvester.php on line 14: Undefined array key "user_id"
[phpBB Debug] PHP Warning: in file [ROOT]/ext/sitesplat/bbseo/event/harvester.php on line 14: Undefined array key "username"
2024-05-27T06:08:36+10:00 https://forex-station.com/feed/topics_active 2024-05-27T06:08:36+10:00 2024-05-27T06:08:36+10:00 https://forex-station.com/post1295542509.html#p1295542509 <![CDATA[MT4 Indicators • Moving Average indicators for MT4]]>
Thank you very much, Mr kvak <3 :In Love:

May I ask you for one more thing?
If possible, could you please add up/down colour to the candles?

Thank you in advance.

Mrs Watanabe.
Hello. Here is version with candles... but there is no place for make it MTF...
Candles has menu for SHORT/MEDIUM term or MEDIUM/LONG.
opera_jDiL2E0yT9.png

3x alma (cross+ribbon +candles).ex4Not downloaded yet 76.84 KiB

Statistics: Posted by kvak — Mon May 27, 2024 6:08 am — Replies 3531 — Views 2053704


]]>
2024-05-27T05:27:28+10:00 2024-05-27T05:27:28+10:00 https://forex-station.com/post1295542508.html#p1295542508 <![CDATA[MT4 Indicators • Already Converted TradingView Indicators to MT4 Indicators]]>
https://pl.tradingview.com/v/r6dAP7yi/

hello


Does anyone know and be able to convert this supertrend indicator from pinescript code to mql4 code?
This indicator is slightly different from the supertrend indicators on this website, mainly when it comes to ATR calculations on which the supertrend is based.

Code: Select all

//@version=4study("Supertrend", overlay = true, format=format.price, precision=2, resolution="")Periods = input(title="ATR Period", type=input.integer, defval=10)src = input(hl2, title="Source")Multiplier = input(title="ATR Multiplier", type=input.float, step=0.1, defval=3.0)changeATR= input(title="Change ATR Calculation Method ?", type=input.bool, defval=true)showsignals = input(title="Show Buy/Sell Signals ?", type=input.bool, defval=true)highlighting = input(title="Highlighter On/Off ?", type=input.bool, defval=true)atr2 = sma(tr, Periods)atr= changeATR ? atr(Periods) : atr2up=src-(Multiplier*atr)up1 = nz(up[1],up)up := close[1] > up1 ? max(up,up1) : updn=src+(Multiplier*atr)dn1 = nz(dn[1], dn)dn := close[1] < dn1 ? min(dn, dn1) : dntrend = 1trend := nz(trend[1], trend)trend := trend == -1 and close > dn1 ? 1 : trend == 1 and close < up1 ? -1 : trendupPlot = plot(trend == 1 ? up : na, title="Up Trend", style=plot.style_linebr, linewidth=2, color=color.green)buySignal = trend == 1 and trend[1] == -1plotshape(buySignal ? up : na, title="UpTrend Begins", location=location.absolute, style=shape.circle, size=size.tiny, color=color.green, transp=0)plotshape(buySignal and showsignals ? up : na, title="Buy", text="Buy", location=location.absolute, style=shape.labelup, size=size.tiny, color=color.green, textcolor=color.white, transp=0)dnPlot = plot(trend == 1 ? na : dn, title="Down Trend", style=plot.style_linebr, linewidth=2, color=color.red)sellSignal = trend == -1 and trend[1] == 1plotshape(sellSignal ? dn : na, title="DownTrend Begins", location=location.absolute, style=shape.circle, size=size.tiny, color=color.red, transp=0)plotshape(sellSignal and showsignals ? dn : na, title="Sell", text="Sell", location=location.absolute, style=shape.labeldown, size=size.tiny, color=color.red, textcolor=color.white, transp=0)mPlot = plot(ohlc4, title="", style=plot.style_circles, linewidth=0)longFillColor = highlighting ? (trend == 1 ? color.green : color.white) : color.whiteshortFillColor = highlighting ? (trend == -1 ? color.red : color.white) : color.whitefill(mPlot, upPlot, title="UpTrend Highligter", color=longFillColor)fill(mPlot, dnPlot, title="DownTrend Highligter", color=shortFillColor)alertcondition(buySignal, title="SuperTrend Buy", message="SuperTrend Buy!")alertcondition(sellSignal, title="SuperTrend Sell", message="SuperTrend Sell!")changeCond = trend != trend[1]alertcondition(changeCond, title="SuperTrend Direction Change", message="SuperTrend has changed direction!")
Image
Try here

Statistics: Posted by mrtools — Mon May 27, 2024 5:27 am — Replies 430 — Views 257010


]]>
2024-05-27T05:26:22+10:00 2024-05-27T05:26:22+10:00 https://forex-station.com/post1295542507.html#p1295542507 <![CDATA[MT4 Indicators • Supertrend indicators for MT4]]>
https://pl.tradingview.com/v/r6dAP7yi/

hello


Does anyone know and be able to convert this supertrend indicator from pinescript code to mql4 code?
This indicator is slightly different from the supertrend indicators on this website, mainly when it comes to ATR calculations on which the supertrend is based.

Code: Select all

//@version=4study("Supertrend", overlay = true, format=format.price, precision=2, resolution="")Periods = input(title="ATR Period", type=input.integer, defval=10)src = input(hl2, title="Source")Multiplier = input(title="ATR Multiplier", type=input.float, step=0.1, defval=3.0)changeATR= input(title="Change ATR Calculation Method ?", type=input.bool, defval=true)showsignals = input(title="Show Buy/Sell Signals ?", type=input.bool, defval=true)highlighting = input(title="Highlighter On/Off ?", type=input.bool, defval=true)atr2 = sma(tr, Periods)atr= changeATR ? atr(Periods) : atr2up=src-(Multiplier*atr)up1 = nz(up[1],up)up := close[1] > up1 ? max(up,up1) : updn=src+(Multiplier*atr)dn1 = nz(dn[1], dn)dn := close[1] < dn1 ? min(dn, dn1) : dntrend = 1trend := nz(trend[1], trend)trend := trend == -1 and close > dn1 ? 1 : trend == 1 and close < up1 ? -1 : trendupPlot = plot(trend == 1 ? up : na, title="Up Trend", style=plot.style_linebr, linewidth=2, color=color.green)buySignal = trend == 1 and trend[1] == -1plotshape(buySignal ? up : na, title="UpTrend Begins", location=location.absolute, style=shape.circle, size=size.tiny, color=color.green, transp=0)plotshape(buySignal and showsignals ? up : na, title="Buy", text="Buy", location=location.absolute, style=shape.labelup, size=size.tiny, color=color.green, textcolor=color.white, transp=0)dnPlot = plot(trend == 1 ? na : dn, title="Down Trend", style=plot.style_linebr, linewidth=2, color=color.red)sellSignal = trend == -1 and trend[1] == 1plotshape(sellSignal ? dn : na, title="DownTrend Begins", location=location.absolute, style=shape.circle, size=size.tiny, color=color.red, transp=0)plotshape(sellSignal and showsignals ? dn : na, title="Sell", text="Sell", location=location.absolute, style=shape.labeldown, size=size.tiny, color=color.red, textcolor=color.white, transp=0)mPlot = plot(ohlc4, title="", style=plot.style_circles, linewidth=0)longFillColor = highlighting ? (trend == 1 ? color.green : color.white) : color.whiteshortFillColor = highlighting ? (trend == -1 ? color.red : color.white) : color.whitefill(mPlot, upPlot, title="UpTrend Highligter", color=longFillColor)fill(mPlot, dnPlot, title="DownTrend Highligter", color=shortFillColor)alertcondition(buySignal, title="SuperTrend Buy", message="SuperTrend Buy!")alertcondition(sellSignal, title="SuperTrend Sell", message="SuperTrend Sell!")changeCond = trend != trend[1]alertcondition(changeCond, title="SuperTrend Direction Change", message="SuperTrend has changed direction!")
Image
Don't know maybe kinda close.
GBPUSDH1.png

! Supertrend atr avgs (alerts).ex4Downloaded 6 times 300.84 KiB

Statistics: Posted by mrtools — Mon May 27, 2024 5:26 am — Replies 457 — Views 223226


]]>
2024-05-27T04:45:52+10:00 2024-05-27T04:45:52+10:00 https://forex-station.com/post1295542506.html#p1295542506 <![CDATA[Trading Systems • XARD - Simple Trend Following Trading System]]> How_It_Works_-_Book_of_Robots.pdfDownloaded 3 times 78.66 MiB
Excel_2023_-_The_Most_Updated_Bible_to_Master_Microsoft_Excel_from_Zero_To_Pro_in_Less_than_5_Minutes_A_Day_Discover_All_the.pdfDownloaded 7 times 12.04 MiB
MASTERING_EXCEL_POWER_PIVOT_amp_amp_POWER_QUERY_-_Step-by-Step_Practical_Guide_to_Master_Excel_Power_Pivot_amp_amp_Power_Query_in.pdfDownloaded 4 times 4.81 MiB
Docker_-_Docker_for_the_Absolute_Beginner.pdfDownloaded 5 times 12.07 MiB

Statistics: Posted by xard777 — Mon May 27, 2024 4:45 am — Replies 15331 — Views 3889144


]]>
2024-05-27T04:24:45+10:00 2024-05-27T04:24:45+10:00 https://forex-station.com/post1295542505.html#p1295542505 <![CDATA[MT4 Indicators • Smart Money Concept (SMC) indicators for MT4]]>
After installing the update MT4 Zeus Arrow no longer runs, be careful with the update. Has anyone been able to figure out which indexes or calculations the Zeus Arrow Oscillator is based on?

Statistics: Posted by Garsgen — Mon May 27, 2024 4:24 am — Replies 173 — Views 221776


]]>
2024-05-27T04:13:46+10:00 2024-05-27T04:13:46+10:00 https://forex-station.com/post1295542504.html#p1295542504 <![CDATA[MT4 Indicators • MT4 Indicator requests and ideas]]>
Do you happen to have the custom indicator "ZeroLAG MA" it needs that so I can check it.
problem has been resolved.
@mrtools thank you.
Heiken Zma seprate windows.png

Statistics: Posted by YeungKwan — Mon May 27, 2024 4:13 am — Replies 20484 — Views 5744692


]]>
2024-05-27T03:36:48+10:00 2024-05-27T03:36:48+10:00 https://forex-station.com/post1295542501.html#p1295542501 <![CDATA[Trading Systems • The FNC Greedy System]]> Statistics: Posted by Reverent — Mon May 27, 2024 3:36 am — Replies 1436 — Views 195665


]]>
2024-05-27T03:27:41+10:00 2024-05-27T03:27:41+10:00 https://forex-station.com/post1295542499.html#p1295542499 <![CDATA[MT4 Indicators • RSI Indicators for MT4]]>
Some arrows missing in lower time frames like 1M
Not having that issue using default settings.

Statistics: Posted by mrtools — Mon May 27, 2024 3:27 am — Replies 2822 — Views 1522590


]]>
2024-05-27T02:50:19+10:00 2024-05-27T02:50:19+10:00 https://forex-station.com/post1295542495.html#p1295542495 <![CDATA[Trader's Lounge • Best of Don The Con]]>
trump_kim.jpg

Statistics: Posted by JohnnyRy — Mon May 27, 2024 2:50 am — Replies 253 — Views 10241


]]>
2024-05-27T01:01:48+10:00 2024-05-27T01:01:48+10:00 https://forex-station.com/post1295542492.html#p1295542492 <![CDATA[Trader's Lounge • What kind of music do you listen to during trading?]]> iframe

Statistics: Posted by Curioso — Mon May 27, 2024 1:01 am — Replies 1559 — Views 177698


]]>
2024-05-27T00:15:38+10:00 2024-05-27T00:15:38+10:00 https://forex-station.com/post1295542490.html#p1295542490 <![CDATA[Trading Systems • 🪲Beatle's Trend Trading System🪲]]>
chiedo scusa scrivendo veloce ho sbagliato

dicevo se c'è una versione x MT TRADER
Not at the moment

Statistics: Posted by BeatlemaniaSA — Mon May 27, 2024 12:15 am — Replies 4155 — Views 1138243


]]>
2024-05-26T20:21:09+10:00 2024-05-26T20:21:09+10:00 https://forex-station.com/post1295542487.html#p1295542487 <![CDATA[Trader's Lounge • Windows 10 to 11]]> https://blogs.windows.com/windows-insid ... w-channel/

Statistics: Posted by Curioso — Sun May 26, 2024 8:21 pm — Replies 69 — Views 2746


]]>
2024-05-26T19:24:57+10:00 2024-05-26T19:24:57+10:00 https://forex-station.com/post1295542486.html#p1295542486 <![CDATA[MetaTrader Forum • ⏰ Daily Downloads: Indicators & Trading Systems Of The Day]]>
Arnaud Legoux, a French mathematician developed the ALMA as a Weighted Moving Average that employs Gaussian Filters to eliminate minor price fluctuations. Ideal as a replacement over the LWMA, Kvak has now released a 3x Ribbon Crossover for MT4, here: post1295542418.html#p1295542418
Triple ALMA Moving Average Cross Ribbon Filled for MT4 (May 2024).png

Statistics: Posted by Jimmy — Sun May 26, 2024 7:24 pm — Replies 1937 — Views 1682621


]]>
2024-05-26T19:19:34+10:00 2024-05-26T19:19:34+10:00 https://forex-station.com/post1295542485.html#p1295542485 <![CDATA[MT4 Indicators • Indicator settings SSL, ASH, ALMA, LWMA]]>
I am looking for some guidance on best settings for a few indicators particularly for the daily charts? Can any one help or show me any threads which already have them ?
As the Daily chart already smooths price action itself you can afford to use smaller periods of Moving Averages for crosses.
As a guide, use Fibonacci numbers for indicators and your Moving Average settings for maximum profit ie:
  • 13 EMA as the fast Moving Average
  • 55 EMA as the slow Moving Average
Using a longer period of Moving Average like 100 SMA will miss a lot of entries and exits and are best saved for the intraday timeframes.

For a guide on what advanced Moving Average filters do, please also see: All Averages - Advanced MA Filters guide.

Statistics: Posted by ChuChu Rocket — Sun May 26, 2024 7:19 pm — Replies 1 — Views 1576


]]>
2024-05-26T17:50:16+10:00 2024-05-26T17:50:16+10:00 https://forex-station.com/post1295542480.html#p1295542480 <![CDATA[Trader's Lounge • WW3 Countdown]]>
The latest escalation by NATO is to use Ukr drones and US satellites to target a Russian Over The Horizon (OTH) radar site deep in southern Russia that would be used to detect incoming Inter Continental Ballistic Missiles from the US in a nuclear war.

Important to note that this radar is a specific use system and not involved in the Ukraine conflict, it's position is fixed and pointed in the opposite direction.
Screenshot 2024-05-26 084126.png

Pro-Ukr Channel.
More Significant Than Reported, This Can Lead To Disaster - Ceasefire - Ukraine Map Analysis, Update


iframe


NATO, time has come to hit Russia hard. Putin entourage. Reuters floats freeze with Zelensky gone

iframe

Statistics: Posted by Ogee — Sun May 26, 2024 5:50 pm — Replies 2878 — Views 178873


]]>