Price Action Dashboard

Hello to All Price Action fans.
As a side project, I’ve written a very simple dashboard to show basic PA signals on multiple pairs and multiple timeframes. I would appreciate, if you could share any ideas or features which could be added to make it more useful. As soon as I clean up the code a bit I will drop it here (as always for free)

It looks like below:

Below to understand the formation codes:
BU = bullish
BE = bearish
&
PB = pin bar
EB = engulfing bar

Cheers!

2 Likes

PADash.ex4 (19.6 KB)
Attached the current version. It recognizes PinBars, Engulfing candles and Inside Bars.
Parameters:
ScopePairs - Symbols from your MT4 separated by comma only eg. “EURUSD+,EURGBP+,GBPUSD+,USDJPY+,USDCAD+,AUDUSD+”
ScopeTimeFrames = Timeframes in minutes separated by comma only eg “1440,240,60,30,15” for D1, H4, H1 etc.
PatternShift - shift for pattern search - 0 to look on current candle, 1 to look on last closed candle etc.
ShowPinBars - include PinBars
ShowEngulfing - include Engulfing patterns
ShowInsideBar - include Inside Bars

Next ideas:

  • Add possibility to load support resistance levels from CSV file to look for patterns at the levels
  • Add possibility to mark patterns on round numbers
  • Add other patterns (eg. blended pin bars from 2, 3, 4 candles)