Attachments forums

List of attachments posted on this forum.


All files on forums: 163132

Re: 🔺 MT5 XARD - Simple Trend Following Trading System

SOLESHOE, Tue Apr 29, 2025 8:43 pm

Morning thought :

it would be really (really) great if XU DASH could have a "trends line up column" indicating for each defined pair if roadmap and trigger are lined up, and even better with added third daily lined up (h1 or h4) (that is 3 trends line up check for each pair). Of course each value would be updated according its associated timeframe for performance concern :)

XARD: Keep it simple update.... Possible DASH4 with new TREND column

1. **TREND Column**:
- Add a "TREND" column after the 20DAY column, showing alignment between Roadmap and Trigger trends.
- **Roadmap Trend**: Default M30 timeframe, using EMA55 (price > EMA55 = uptrend, else downtrend).
- **Trigger Trend**: Default M5 timeframe, using SWMA (upward slope = uptrend, else downtrend).
- **Alignment**:
- Both up → Green ▲.
- Both down → Red ▼.
- Misaligned → Gray -.
- **Width**: ~15 pixels (consistent with the % MOVE triangle).

2. **User Inputs**:
- **Timeframes**:
- `input ENUM_TIMEFRAMES roadmapTF = PERIOD_M30;` (default M30).
- `input ENUM_TIMEFRAMES triggerTF = PERIOD_M5;` (default M5).
- **Position Adjustments for TREND Column**:
- `input int trendXOffset = 280;` (default X position after 20DAY).
- `input int trendYOffset = 0;` (default Y offset, for micro-adjustments relative to other columns).
- These inputs allow users to tweak the timeframes and fine-tune the TREND column’s position.

#### Current Dashboard (Based on Screenshot):
```
SYMBOL PRICE % MOVE PIP$ HiLo 20DAY
WS30 40311 â–¼ 0.34% 135 163 930
XAUUSD 3318.9 â–¼ 0.77% 257 436 917
BTCUSD 94808 â–¼ 0.45% 426 1273 2730
```

#### Proposed Dashboard with TREND Column:
```
SYMBOL PRICE % MOVE PIP$ HiLo 20DAY TREND
WS30 40311 â–¼ 0.34% 135 163 930 - (Gray: Roadmap up, Trigger down)
XAUUSD 3318.9 â–¼ 0.77% 257 436 917 â–¼ (Red: Roadmap down, Trigger down)
BTCUSD 94808 â–¼ 0.45% 426 1273 2730 â–² (Green: Roadmap up, Trigger up)
```
User can select their own Roadmap & Trigger TFs
input string trendSettings = "<<<<==== Trend Settings ====>>>>"; // <<<<==== Trend Settings ====>>>>
input ENUM_TIMEFRAMES roadmapTF = PERIOD_M30; // Roadmap Timeframe (default M30)
input ENUM_TIMEFRAMES triggerTF = PERIOD_M5; // Trigger Timeframe (default M5)

New Positioning complete as are UP/DN Triangles complete and similar to other column Triangles, still working on calculations...
OK, I will run it over the week and see how it goes, if OK, I will add to XU v009-MT5-Setup
All files in topic