Attachments forums

List of attachments posted on this forum.


All files on forums: 161006

Re: XARD - Simple Trend Following Trading System

xard777, Thu Nov 28, 2024 2:36 am

Life is uncomplicated... you stand by, keeping an eye out for the emergence of a second Dot.
Observe the price as it bounces back from the midpoint between yesterday's high and low, and then crosses the EMA line.

Simplicity is key; it's just fundamental price behavior.
This approach provides reliable, smart analysis that you can ingrain as second nature.
Xard777

NB Orange ZZ1 Line is 30min (41) semafor and White ZZ2 Line is 30min (9) semafor

Code: Select all

// Move and adjust ExtDepth calculation here
    int chartPeriod = Period();
         if (chartPeriod == PERIOD_M30) ExtDepth = 41;
    else if (chartPeriod == PERIOD_M15) ExtDepth = 41* 2 - 1;
    else if (chartPeriod == PERIOD_M5)  ExtDepth = 41* 6 - 1;
    else if (chartPeriod == PERIOD_M1)  ExtDepth = 41*30 - 1;
    // Default case is already set above
All files in topic