[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-06T23:14:52+10:00 https://forex-station.com/feed/topics_active 2024-05-06T23:14:52+10:00 2024-05-06T23:14:52+10:00 https://forex-station.com/post1295540861.html#p1295540861 <![CDATA[Coding Help • WRB indicator (as on MT4 and MT5) for Pinescript (TradingView)]]>
I am not sure if TradingView is also welcome on this forum. If not apologies for posting.

I am working on a pinescript code that will draw WRB and WRBHG boxes.

This issue I am facing so far is to modify the endDate of the box to be set as soon as the price penetrates the box. (either from above or from the bottom)

As far as I know pinescript process data from new to old...

The code below draws for now 6 boxes but can be changes to draw max 500. Unless the4 boxes are cut when the price penetrates it it is kinda useless to draw 500 boxes.

Code: Select all

//@version=5indicator("v.0 WRBHG with Analysis", overlay = true, max_bars_back=5000, max_lines_count=4, max_labels_count=4, max_boxes_count = 4)group0 = 'Period under study'startDate = input.time(title='Start Date', defval=timestamp("2000-01-19 09:00:00 GMT+2"), group=group0)endDate = input.time(title='End Date', defval=timestamp('2099-09-01 09:00:00 GMT+2'), tooltip='Date & time to stop analysis', group=group0)use_custom_period = input.bool(title='use_custom_period', defval=true, group=group0, inline='HLline')var withinSession = truevar WRBHG_upper = 0.0var WRBHG_lower = 0.0var fillColor = color.blackx_extend_count = input.int(title="x extend count", defval = 30)transp  = input.int(title="Transparency", defval = 70)body = math.abs(open-close)wrb = body>body[1] and body>body[2] and body>body[3] ? math.avg(open,close) : nahg = (wrb[1] and (low>high[2] or high<low[2]))? wrb[1] : navar penetratedBox = falsevar boxEndTime = endDateif withinSession    if hg        if close[1] > open[1] and low > high [2]            WRBHG_upper := low            WRBHG_lower := high[2]            fillColor := color.new(color.green, transp)        else if close[1] < open[1] and low > high [2]            WRBHG_upper := low            WRBHG_lower := high[2]            fillColor := color.new(color.green, transp)        else            WRBHG_upper := low[2]            WRBHG_lower := high            fillColor := color.new(color.red, transp)        box.new(time[2], WRBHG_upper, endDate, WRBHG_lower, border_color = na, xloc = xloc.bar_time, bgcolor = fillColor)  s3 = ta.ema(ohlc4, 3)plot(s3, color=color.new(color.black,0))
Thanks for the help. Appriciate it.

Kind regards

Statistics: Posted by dgrl — Mon May 06, 2024 11:14 pm — Replies 0 — Views 9


]]>
2024-05-06T23:01:25+10:00 2024-05-06T23:01:25+10:00 https://forex-station.com/post1295540860.html#p1295540860 <![CDATA[Trading Journals • MACD&RSI]]>
XAG/USD :

Wait for sell signal ,

STOP @ 27.80

TP @ 26.6 , or lower ,
I was reviewing the previous posts and I saw this post , it hit the target 26.6 ,

now , it shows a bullish trend ,

STOP @ 25.75

TP @ based on system trading
XAGUSDH4.png

Statistics: Posted by macd & rsi — Mon May 06, 2024 11:01 pm — Replies 1132 — Views 161714


]]>
2024-05-06T22:57:32+10:00 2024-05-06T22:57:32+10:00 https://forex-station.com/post1295540859.html#p1295540859 <![CDATA[Commercial Services & Offers • ICTraders Brasil - Free Forex Signals]]> 06/05/2024 - COMPRA (BUY) - BRENT - SWING TRADE- SINAIS FOREX - ICTRADERS BRASIL
Image
▶️BRENT

⚠️BUY: 83.34
✅TP 1: 85.34
✅TP 2: 90.54
❌SL : 80.79

GET $30 FREE to Trade. NO Deposit required (just verify your account): bit.ly/xm30free

- You can follow this trade result here: t.me/ictradersbrasil

Statistics: Posted by ICTradersBrasil — Mon May 06, 2024 10:57 pm — Replies 5 — Views 474


]]>
2024-05-06T22:46:56+10:00 2024-05-06T22:46:56+10:00 https://forex-station.com/post1295540858.html#p1295540858 <![CDATA[Trader's Lounge • WW3 Countdown]]>
If the US gets into a war in Europe China wins and will be left to resupply the world just as the US did after WWII which gained them hegemony in the first place. The US will lose hegemony and the dollar will lose it's position as the worlds reserve currency and then all those dollars printed over decades and distributed around the world will come home, which will cause hyperinflation and the destruction of the US economy and civil society.



The US Will Send Troops | Russia Responds As Harshly As Possible. Military Summary For 2024.05.06

iframe


“This Is A Dangerous Moment In American History” - They're Pushing For WW3!

iframe

Statistics: Posted by Ogee — Mon May 06, 2024 10:46 pm — Replies 2814 — Views 166715


]]>
2024-05-06T22:22:04+10:00 2024-05-06T22:22:04+10:00 https://forex-station.com/post1295540857.html#p1295540857 <![CDATA[Trader's Lounge • Covid Vax]]>
Screenshot 2024-05-06 131938.png
https://brownstone.org/articles/covid-i ... c-disease/


Statistics: Posted by Ogee — Mon May 06, 2024 10:22 pm — Replies 8 — Views 376


]]>
2024-05-06T22:21:49+10:00 2024-05-06T22:21:49+10:00 https://forex-station.com/post1295540856.html#p1295540856 <![CDATA[MT4 Indicators • Step Indicators for MT4]]>
On this version you can have the dots matching the on-chart arrows, but for the dots can only choose one method or the other, for the on-chart arrows you can use both methods. Need to figure out a decent way to do the same for the dots in the future but this seems ok for now.
This looks good.. Is it possible to have alerts when the "Arrow on fast/slow step cross" comes on ..

Thanks

Statistics: Posted by Mickey Abi — Mon May 06, 2024 10:21 pm — Replies 704 — Views 266067


]]>
2024-05-06T21:24:29+10:00 2024-05-06T21:24:29+10:00 https://forex-station.com/post1295540855.html#p1295540855 <![CDATA[Trading Systems • MT4 Trading Systems (Old or new!) Please post here]]>
I like the simplicity of your approach very much, I will try to replicate it - thanks, man!
Maybe - to start of: a bit like that:
Dear Josi, please share the indicators and settings from your post 404. I need it very much.

Statistics: Posted by EVGENIY86 — Mon May 06, 2024 9:24 pm — Replies 628 — Views 360844


]]>
2024-05-06T20:48:31+10:00 2024-05-06T20:48:31+10:00 https://forex-station.com/post1295540854.html#p1295540854 <![CDATA[MT4 Indicators • Something interesting please post here (Metatrader)]]>
good combination with s/d zone + T3 average line..
Dear Sal, please share the indicator, moving average, red with white color. From your post. I need it exactly. Post 2470

Statistics: Posted by EVGENIY86 — Mon May 06, 2024 8:48 pm — Replies 3831 — Views 1020536


]]>
2024-05-06T20:40:04+10:00 2024-05-06T20:40:04+10:00 https://forex-station.com/post1295540853.html#p1295540853 <![CDATA[Trading Systems • XARD - Simple Trend Following Trading System]]>
Many thanks to all programmers and forum members for your contribution to its development! This is the best forum of all existing ones!
Hello EVGENIY86,

Welcome to this community and thank for your words.

Statistics: Posted by Curioso — Mon May 06, 2024 8:40 pm — Replies 15133 — Views 3749879


]]>
2024-05-06T19:43:11+10:00 2024-05-06T19:43:11+10:00 https://forex-station.com/post1295540850.html#p1295540850 <![CDATA[MT4 Indicators • Ichimoku Indicators for MT4]]>
Ichimoku Multi-timeframe Conditional Bars with signals in separate windows

I like Ichimoku but the chart is crowded so I use an indicator with signals in separate windows.
What makes this one of the most useful and simple Ichimoku indicators is that it will color according to Tenkan Sen and Price's position by default.

For example:
  • Price is above Tenkan Sen line and Above Kumo Cloud the Bars light up sky blue
  • Price is below Tenkan Sen line and Below Kumo Cloud the Bars light up tomato
  • No trade is shown when the Bars light up yellow
It is very neat especially for beginners!

Thank you Funchi & daughter you guys are legends 🫶

Statistics: Posted by ChuChu Rocket — Mon May 06, 2024 7:43 pm — Replies 512 — Views 236239


]]>
2024-05-06T19:40:46+10:00 2024-05-06T19:40:46+10:00 https://forex-station.com/post1295540849.html#p1295540849 <![CDATA[MetaTrader Forum • ⏰ Daily Downloads: Indicators & Trading Systems Of The Day]]>
We begin this week by featuring a versatile Ichimoku code made by legendary contributors Funchi & his daughter. This Histogram code comes with strict alerts for over 10x conditions & can be "stacked" neatly to sit inside your charts. Please try it here: post1295540831.html#p1295540831
Ichimoku Histogram Bars Multi Time Frame MT4 (May 2024).png

Statistics: Posted by Jimmy — Mon May 06, 2024 7:40 pm — Replies 1921 — Views 1644160


]]>
2024-05-06T19:37:30+10:00 2024-05-06T19:37:30+10:00 https://forex-station.com/post1295540848.html#p1295540848 <![CDATA[Commercial Services & Offers • $100 Up Down V6 indicator]]> 5m chart
all expecting down
targetting 1.069
EURUSDM5.png

Statistics: Posted by guner — Mon May 06, 2024 7:37 pm — Replies 1059 — Views 83970


]]>
2024-05-06T18:31:48+10:00 2024-05-06T18:31:48+10:00 https://forex-station.com/post1295540844.html#p1295540844 <![CDATA[Trading Journals • QQE + JURIK]]> Moneta Markets MT5 Terminal.png

Statistics: Posted by macd & rsi — Mon May 06, 2024 6:31 pm — Replies 21 — Views 1788


]]>
2024-05-06T17:56:54+10:00 2024-05-06T17:56:54+10:00 https://forex-station.com/post1295540841.html#p1295540841 <![CDATA[MT4 Indicators • MT4 Multi Time Frame (MTF) Indicators]]>
Looking at the message you changed the name, try downloading it again and leave the name the same.
It's working now. :)
Thank you very much.

Statistics: Posted by Cengiz — Mon May 06, 2024 5:56 pm — Replies 831 — Views 313721


]]>
2024-05-06T17:55:50+10:00 2024-05-06T17:55:50+10:00 https://forex-station.com/post1295540840.html#p1295540840 <![CDATA[Trader's Lounge • Traders joking (Memes, Jokes & anything funny to pass time between trades)]]>
Screenshot 2024-05-06 085415.png

Statistics: Posted by Ogee — Mon May 06, 2024 5:55 pm — Replies 3268 — Views 367229


]]>