Contest - MicroSafi (By MicroSafi)
Pieaugums | +78.23% |
Kritums (Drawdown) | 55.00% |
Pipi: | 1303.8 |
Darījumi | 255 |
Uzvaras |
|
Zaudēt |
|
Tips | Demo |
Kredīta plecs: | 1:100 |
Tirdzniecība | Manuāli |
Edit Your Comment
Diskusija
Biedrs kopš
65 ieraksti
Biedrs kopš
12 ieraksti
Feb 15, 2012 at 15:20
Biedrs kopš
12 ieraksti
Szia!
Köszi! Ez a THV4-es rendszer egész jó :)
Köszi! Ez a THV4-es rendszer egész jó :)
flrp@
Biedrs kopš
65 ieraksti
Biedrs kopš
12 ieraksti
Feb 15, 2012 at 17:07
Biedrs kopš
12 ieraksti
Ez egy stratégia. Keressél rá. Érdemes. 😀
Te mivel dolgozol?
Te mivel dolgozol?
flrp@
Biedrs kopš
65 ieraksti
Feb 15, 2012 at 18:29
Biedrs kopš
65 ieraksti
Megnézem majd. Én a sajátommal dolgozom. 😄
Úgy látom csak a középmezőnyre jó az enyém...
www.mqlcoding.hu -n olvashatsz róla, de ez egy mix változat most...
Úgy látom csak a középmezőnyre jó az enyém...
www.mqlcoding.hu -n olvashatsz róla, de ez egy mix változat most...
Biedrs kopš
12 ieraksti
Feb 15, 2012 at 19:00
Biedrs kopš
12 ieraksti
van egy plussz indikátor amit használok. Elvileg egy free cucc. :)
itt a kód, ha érdekel:
//+------------------------------------------------------------------+
//| CoeffofLine.mq4
//| Ramdass - Conversion only
//+------------------------------------------------------------------+
#property indicator_separate_window
#property indicator_buffers 1
#property indicator_color1 Yellow
extern int ndot=5;
extern int CountBars=300;
//---- buffers
double cfl[];
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
string short_name;
//---- indicator line
IndicatorBuffers(1);
SetIndexStyle(0,DRAW_LINE);
SetIndexBuffer(0,cfl);
//----
return(0);
}
//+------------------------------------------------------------------+
//| CoeffofLine_v1 |
//+------------------------------------------------------------------+
int start()
{
if (CountBars>=Bars) CountBars=Bars;
SetIndexDrawBegin(0,Bars-CountBars+ndot+1);
int i,shift,cnt,ndot1,counted_bars=IndicatorCounted();
double TYVar,ZYVar,TIndicatorVar,ZIndicatorVar,M,N,AY,AIndicator;
//----
if(Bars<=ndot) return(0);
//----
shift=CountBars-ndot-1;
while(shift>=0)
{
TYVar=0;
ZYVar=0;
N=0;
M=0;
TIndicatorVar=0;
ZIndicatorVar=0;
ndot1=ndot;
if (shift+1<ndot1) ndot1=shift+1;
for (cnt=ndot; cnt>=1; cnt--) // n=5 - ďî ď˙ňč ňî÷ęŕě
{
N=N+cnt*cnt; //đŕâíî 55
M=M+cnt; //đŕâíî 15
}
for (cnt=ndot1; cnt>=1; cnt--) // n=5 - ďî ď˙ňč ňî÷ęŕě
{
ZYVar=ZYVar+(High[shift-cnt+1]+Low[shift-cnt+1])/2*(ndot+1-cnt);
TYVar=TYVar+(High[shift-cnt+1]+Low[shift-cnt+1])/2;
ZIndicatorVar=ZIndicatorVar+iMA(NULL,0,5,3,MODE_SMMA,PRICE_MEDIAN,shift-cnt+1)*(ndot+1-cnt);
TIndicatorVar=TIndicatorVar+iMA(NULL,0,5,3,MODE_SMMA,PRICE_MEDIAN,shift-cnt+1);
}
AY=(TYVar+(N-2*ZYVar)*ndot/M)/M;
AIndicator=(TIndicatorVar+(N-2*ZIndicatorVar)*ndot/M)/M;
if (Symbol()=='EURUSD' || Symbol()=='GBPUSD' || Symbol()=='USDCAD' || Symbol()=='USDCHF'
|| Symbol()=='EURGBP' || Symbol()=='EURCHF' || Symbol()=='AUDUSD'
|| Symbol()=='GBPCHF')
{cfl[shift]=(-1000)*MathLog(AY/AIndicator);}
else {cfl[shift]=(1000)*MathLog(AY/AIndicator);}
shift--;
}
return(0);
}
//+------------------------------------------------------------------+
itt a kód, ha érdekel:
//+------------------------------------------------------------------+
//| CoeffofLine.mq4
//| Ramdass - Conversion only
//+------------------------------------------------------------------+
#property indicator_separate_window
#property indicator_buffers 1
#property indicator_color1 Yellow
extern int ndot=5;
extern int CountBars=300;
//---- buffers
double cfl[];
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
string short_name;
//---- indicator line
IndicatorBuffers(1);
SetIndexStyle(0,DRAW_LINE);
SetIndexBuffer(0,cfl);
//----
return(0);
}
//+------------------------------------------------------------------+
//| CoeffofLine_v1 |
//+------------------------------------------------------------------+
int start()
{
if (CountBars>=Bars) CountBars=Bars;
SetIndexDrawBegin(0,Bars-CountBars+ndot+1);
int i,shift,cnt,ndot1,counted_bars=IndicatorCounted();
double TYVar,ZYVar,TIndicatorVar,ZIndicatorVar,M,N,AY,AIndicator;
//----
if(Bars<=ndot) return(0);
//----
shift=CountBars-ndot-1;
while(shift>=0)
{
TYVar=0;
ZYVar=0;
N=0;
M=0;
TIndicatorVar=0;
ZIndicatorVar=0;
ndot1=ndot;
if (shift+1<ndot1) ndot1=shift+1;
for (cnt=ndot; cnt>=1; cnt--) // n=5 - ďî ď˙ňč ňî÷ęŕě
{
N=N+cnt*cnt; //đŕâíî 55
M=M+cnt; //đŕâíî 15
}
for (cnt=ndot1; cnt>=1; cnt--) // n=5 - ďî ď˙ňč ňî÷ęŕě
{
ZYVar=ZYVar+(High[shift-cnt+1]+Low[shift-cnt+1])/2*(ndot+1-cnt);
TYVar=TYVar+(High[shift-cnt+1]+Low[shift-cnt+1])/2;
ZIndicatorVar=ZIndicatorVar+iMA(NULL,0,5,3,MODE_SMMA,PRICE_MEDIAN,shift-cnt+1)*(ndot+1-cnt);
TIndicatorVar=TIndicatorVar+iMA(NULL,0,5,3,MODE_SMMA,PRICE_MEDIAN,shift-cnt+1);
}
AY=(TYVar+(N-2*ZYVar)*ndot/M)/M;
AIndicator=(TIndicatorVar+(N-2*ZIndicatorVar)*ndot/M)/M;
if (Symbol()=='EURUSD' || Symbol()=='GBPUSD' || Symbol()=='USDCAD' || Symbol()=='USDCHF'
|| Symbol()=='EURGBP' || Symbol()=='EURCHF' || Symbol()=='AUDUSD'
|| Symbol()=='GBPCHF')
{cfl[shift]=(-1000)*MathLog(AY/AIndicator);}
else {cfl[shift]=(1000)*MathLog(AY/AIndicator);}
shift--;
}
return(0);
}
//+------------------------------------------------------------------+
flrp@
Biedrs kopš
65 ieraksti
Feb 15, 2012 at 19:12
Biedrs kopš
65 ieraksti
Köszi, elemzem majd ha egy kis időm lesz..
Tudsz programozni MQL-t ?
Tudsz programozni MQL-t ?
Biedrs kopš
12 ieraksti
Feb 15, 2012 at 19:23
Biedrs kopš
12 ieraksti
Hát elbíbelődöm vele. :)
Miért kérdezed?
Miért kérdezed?
flrp@
Biedrs kopš
65 ieraksti
Feb 15, 2012 at 19:58
Biedrs kopš
65 ieraksti
Kíváncsiság csak, semmi több..
Azért elég szépen feljöttél, gratulálok neked...
Azért elég szépen feljöttél, gratulálok neked...
Biedrs kopš
12 ieraksti
Feb 15, 2012 at 20:15
Biedrs kopš
12 ieraksti
Remélem megy ez mégfeljebb is 😉
Éppen most előztelek meg egy századdal :) (bocsi :))
Éppen most előztelek meg egy századdal :) (bocsi :))
flrp@
Biedrs kopš
65 ieraksti
Feb 15, 2012 at 20:28
Biedrs kopš
65 ieraksti
Megjegyeztem !!!!!
Na majd mindjárt.. (ha elmozdul innen kicsikét az árfolyam)
Na majd mindjárt.. (ha elmozdul innen kicsikét az árfolyam)
Biedrs kopš
65 ieraksti
Feb 16, 2012 at 20:20
Biedrs kopš
65 ieraksti
Pihengetünk ? Jól elhúztál, most dolgozhatok, hogy utolérjelek 😄
Biedrs kopš
12 ieraksti
Feb 17, 2012 at 03:14
Biedrs kopš
12 ieraksti
Gondoltam alszok is egy kicsit. 😁
Megvárjalak? 😇
Megvárjalak? 😇
flrp@
Biedrs kopš
65 ieraksti
Feb 17, 2012 at 09:40
Biedrs kopš
65 ieraksti
Megyek majd...
Csak nekem is kell aludni vmikor...
😄
Csak nekem is kell aludni vmikor...
😄
Biedrs kopš
12 ieraksti
Feb 17, 2012 at 16:05
Biedrs kopš
12 ieraksti
Hát pedig nagyon úgy néz ki, hogy túl vállaltam magam, és már meg is előztél :(
flrp@
Biedrs kopš
65 ieraksti
Biedrs kopš
12 ieraksti
Feb 17, 2012 at 17:45
Biedrs kopš
12 ieraksti
minden képpen!
'nem adom fel, míg nincsen rajtam lánc' :)
'nem adom fel, míg nincsen rajtam lánc' :)
flrp@
Biedrs kopš
65 ieraksti
Feb 23, 2012 at 12:23
Biedrs kopš
65 ieraksti
HI, látom megint utolérsz....
Szép volt gratulálok...
Szép volt gratulálok...
Biedrs kopš
4 ieraksti
Biedrs kopš
65 ieraksti
Feb 23, 2012 at 19:32
Biedrs kopš
65 ieraksti
:) Azé' még nem adtam fel..........
Bár most Te vagy a jobb (equityben), de nem sokkal....
Bár most Te vagy a jobb (equityben), de nem sokkal....
*Spams netiks pieļauts, un tā rezultātā var slēgt kontu.
Tip: Posting an image/youtube url will automatically embed it in your post!
Tip: Type the @ sign to auto complete a username participating in this discussion.