Thank you WHRoeder - page 3

 
Eurozo:
 RaptorUK I'm still wondering though if I should make the indicator into an EA to get the values since thats what the other indicator that produces these results is.  In your opinion, If its just an indicator would it be angle to give me these results?
Yes of course,  why shouldn't it ?
 

I only ask because that EA only produces these results, its does not open any orders on my demo account which is what its suppose to do as well.

 
Eurozo:

I only ask because that EA only produces these results, its does not open any orders on my demo account which is what its suppose to do as well.

Open the code in MetaEditor and tell me where OrderSend() is called,  I can't find it . . .
 

This is all I found

 if ( Range <= (TestRange*Point) && Range > 0 )
               {           
                  if (Bid >= HHighest + (TestZone*Point) && Bid <= HHighest + (OrderZone*Point) && OkToBuy && Buying )
                     {
                        OrderSend(Symbol(), OP_BUY, Lots, Ask, Slippage, StopLossH, TakeProfitH, "BreakOut eagle Buy", MagicNumber, NULL, Blue);
                        Buying = false;
                     }     
                  if (Bid <= LLowest - (TestZone*Point)  && Bid >= LLowest - (OrderZone*Point) && OkToSell && Selling )        
                     {
                        OrderSend(Symbol(), OP_SELL, Lots, Bid, Slippage, StopLossL, TakeProfitL, "Breakout eagle Sell", MagicNumber, NULL, Red);
                        Selling = false;

 
Eurozo:

This is all I found

 if ( Range <= (TestRange*Point) && Range > 0 )
               {           
                  if (Bid >= HHighest + (TestZone*Point) && Bid <= HHighest + (OrderZone*Point) && OkToBuy && Buying )
                     {
                        OrderSend(Symbol(), OP_BUY, Lots, Ask, Slippage, StopLossH, TakeProfitH, "BreakOut eagle Buy", MagicNumber, NULL, Blue);
                        Buying = false;
                     }     
                  if (Bid <= LLowest - (TestZone*Point)  && Bid >= LLowest - (OrderZone*Point) && OkToSell && Selling )        
                     {
                        OrderSend(Symbol(), OP_SELL, Lots, Bid, Slippage, StopLossL, TakeProfitL, "Breakout eagle Sell", MagicNumber, NULL, Red);
                        Selling = false;

That code is not in Breakout 3, Breakout 4 or Breakout 5 code that you posted . . .
 
RaptorUK:
That code is not in Breakout 3, Breakout 4 or Breakout 5 code that you posted . . .
That's strange because I've copied the entire code with this in the code apparently 5 times now.  This part is at the end of the code so I wonder why it's not showing up for you to see.
Reason: