@tipsywisdom I want to thank you for all the support and concern.
Latest posts made by mywife
-
RE: Terminate EAposted in Questions & Answers
-
RE: Terminate EAposted in Questions & Answers
@tipsywisdom I think so, better right. Actually can give me sample block to cancel for the trade period, sir. Thank for advice.
-
RE: Terminate EAposted in Questions & Answers
@l-andorrà Sorry Sir, I have another request, how can make my breakeven work?

I already set breakeven but not move to my setting

-
Terminate EAposted in Questions & Answers
Hello Traders and fxDreema
how to terminate EA after achieve profit target.
Can give me sample block.
TQ -
Fibonacci Retracementposted in Questions & Answers
Hello Coders,
I'm new here and wanna learn
I got question and already answer from somebody,
and here I have a question, how to arrange the block, using Fibonacci Retracement, from lower low to breakout candle? Please

-
RE: How to set Engulfing like that, candle id 1 wick engulf candle id 2.. almost try but still fail,,posted in Questions & Answers
@ambrogio I did and try many time but still not same
.
.
I don't know to read this..
.
.
int OnCalculate(const int rates_total,
const int prev_calculated,
const datetime& time[],
const double& open[],
const double& high[],
const double& low[],
const double& close[],
const long& tick_volume[],
const long& volume[],
const int& spread[])
{
int limit = rates_total - prev_calculated;
//--- counting from 0 to rates_total
ArraySetAsSeries(Buffer1, true);
//--- initial zero
if(prev_calculated < 1)
{
ArrayInitialize(Buffer1, EMPTY_VALUE);
}
else
limit++;//--- main loop
for(int i = limit-1; i >= 0; i--)
{
if (i >= MathMin(5000-1, rates_total-1-50)) continue; //omit some old rates to prevent "Array out of range" or slow calculation//Indicator Buffer 1 if(Low[1+i] > Low[i] //Candlestick Low > Candlestick Low && High[1+i] < High[i] //Candlestick High < Candlestick High ) { Buffer1[i] = Low[i]; //Set indicator value at Candlestick Low if(i == 0 && Time[0] != time_alert) { myAlert("indicator", "Buy"); time_alert = Time[0]; } //Instant alert, only once per bar } else { Buffer1[i] = EMPTY_VALUE; } }return(rates_total);
}
//+------------------------------------------------------------------+
bolded text