RSI+BB+MA Scalping - page 2

 
anuj71 #:

My head is already not working today. I'll reread your posts tomorrow and try to answer something.

 
anuj71 #:
// --- BUY LOGIC ---
if(
   // Checks if MA is not inside Band (Strong Uptrend Structure)
   (MA_S1 < BB_Lower_S1 || MA_S1 > BB_Upper_S1) &&
   
)
{
   // OPEN BUY ORDER
}


// --- SELL LOGIC ---
if(
   // C. Band FILTER (Shift 1)
   // Checks if MA is not inside Band (Strong Downtrend Structure)
   (MA_S1 < BB_Lower_S1 || MA_S1 > BB_Upper_S1)
   
)
{
   // OPEN SELL ORDER
}

Your image contradicts this - there is EMA(200) inside the Bollinger Bands.

So should MA be outside the Bollinger Bands?

[Deleted]  
Vladislav Boyko #:

Your image contradicts this - there is EMA(200) inside the Bollinger Bands.

So should MA be outside the Bollinger Bands?

That is an AI generated Image based on my logic. 


Logic is very simple, Follow the Bigger Trend and Go Against Smaller Trend as market continues moves ups and down even in strong trendy market. My EA will be ready in this week then i will share here, so you can have all clear info what i am really looking for and then you can check and maybe fix if any issues with it.