Live To Sell

Pro volume arrived.

The arrows are new plots, candles closing back 3/5th and 2/5th. Yet another bounce off of the green support (at 1/3 of the hourly candle).

///reversal wick - upside

       if (High[i]>iBands(symbol,0,30,2,0,PRICE_MEDIAN,MODE_UPPER,i) && (High[i]-Low[i])>180*Point && Close[i]<High[i]-(High[i]-Low[i])/5*3 && Open[i]<High[i]-(High[i]-Low[i])/3
       && High[i]>High[i+1]
       ){
      ObjectCreate("Goal"+IntegerToString(i), OBJ_TEXT, 0, Time[i+1], High[i]-(High[i]-Low[i])/3+30*Point); 
        ObjectSetText("Goal"+IntegerToString(i), CharToStr(220), 38, "Wingdings", Red); 
  }    
  
  
  ///reversal wick - downside
         if (Low[i]<iBands(symbol,0,30,2,0,PRICE_MEDIAN,MODE_LOWER,i) 
         && Low[i]<Low[i+1]
         //&& (High[i]-Low[i])>140*Point
          && Close[i]>Low[i]+(High[i]-Low[i])/5*3 && Open[i]>Low[i]+(High[i]-Low[i])/3){
      ObjectCreate("Goal"+IntegerToString(i), OBJ_TEXT, 0, Time[i+1], Low[i]+(High[i]-Low[i])/3+30*Point); 
        ObjectSetText("Goal"+IntegerToString(i), CharToStr(220), 38, "Wingdings", Green); 
  }   
  
   ///reversal wick - downside, between 2 candles
  if (Low[i]<iBands(symbol,0,30,2,0,PRICE_MEDIAN,MODE_LOWER,i) 
         && Low[i]<Low[i+1]
         && Close[i]>Open[i]
         //&& (High[i]-Low[i])>140*Point
          && Close[i]>Low[i]+(High[i+1]-Low[i])/5*2 
          //&& Open[i+1]>Low[i+1]+(High[i]-Low[i])/3
          ){
      ObjectCreate("Goal"+IntegerToString(i), OBJ_TEXT, 0, Time[i+1], Low[i]+(High[i+1]-Low[i])/3+30*Point); 
        ObjectSetText("Goal"+IntegerToString(i), CharToStr(220), 38, "Wingdings", Green); 
  }   

Due to the increased volatility, I trade on a quarter lot basis and try not to hold more than 2 naked lots for a longer period.

I am constantly taking profits to boost the equity bottom line.

This is not the only way, but it is my way. I don’t aim for home runs.

Yesterday, I made $1214.58; today, I’m at $996.97, so that’s 2.2k I did not have on Friday. I had 70-80 closed-out trades per day. Started with full hedge, aiming to close with a full hedge. In terms of money, what I am doing can be done with an 8-9k account.

If you want to know, my biggest daily Forex gain was 27k, and the best month brought 87k.