[WARNING CLOSED!] Any newbie question, so as not to clutter up the forum. Professionals, don't go by. Can't go anywhere without you. - page 534
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
When I cross out when current price is equal to moving average and trailing stop. I made trailing stop small on purpose but it still does not work.
народ ! объясните новичку как установить таймфрэйм Н3 и поставит на него rsi 12 и 3 периодный (отображение в одном окне)
Look for the PeriodConverter script, open an offline chart and put the rsi on it.
Ищи скрипт PeriodConverter, открывай оффлайновый график и вешай на него rsi.
Even though I don't understand it, thank you very much !!!
Can you suggest an indicator to draw a shaded area on the chart between two SMA(1) plotted by high & low.
Like this (shaded in point):
#property indicator_separate_window
#property indicator_buffers 2
#property indicator_color1 White
doubleMapBuffer1[];
int init()
{
IndicatorShortName("eurchf_vasay");
SetIndexStyle(0,DRAW_LINE);
SetIndexBuffer(0,ExtMapBuffer1);
return(0);
}
int start()
{
int i;
i=10;
while(i>=0)
{
ExtMapBuffer1[i]=1;
i--;
}
Print(ArraySize(ExtMapBuffer1));
return(0);
}
2010.04.29 22:41:04 There were 54 passes done during optimization, 54 results have been discarded as insignificant
I was optimizing different parameters before and it worked. Now, when I need it especially it doesn't work...
I'm asking everyone who knows anything about the problem to come forward, just crying out for help!!!
хоть ничего и не понял все равно спасибо вам большое !!!
try again https://www.mql5.com/ru/code/7935
Всем привет! Оптимизирую советника, а после оптимизации в результатах пусто. Галочки установил где нужно на тестируемом параметре, все остальные параметры заданы, пробовал с генетическим алгоритмом и без, бесполезно. Все котировки закачаны. Короче, настраиваю всё так, как не раз описывалось на форуме во множестве статей. Делает 54 прохода, а результаты пустые. В журнале оптимизации последней строкой после трёх строк о загрузке советника (ok), старте оптимизации и её остановке написано вот что:
2010.04.29 22:41:04 There were 54 passes done during optimization, 54 results have been discarded as insignificant
Раньше делал оптимизацию различных параметров, всё работало. Теперь, когда это особенно нужно - не работает...
Прошу всех, кто что-нить знает о проблеме откликнуться, просто взываю о помощи!!!
Free translation: genetic optimisation has found a mistake in the genes... In fact, the optimisation always resulted in a loss.
In the Optimisation Results tab, turn off the Skip Useless Results check box.
is this correct?