1. Mann-Kendall Testi Nedir?
Tanım: Mann-Kendall testi, zaman serilerinde trend olup olmadığını belirlemek için kullanılan bir istatistiksel testtir. Özellikle çevre bilimleri, ekonomi ve finans gibi alanlarda kullanılır.
Amaç: Bu test, verilerde belirgin bir artış (pozitif trend) veya azalış...
Stop Loss Indicator
periodsshort:=Input("periods if short",1,50,10);
periodslong:=input("periods if long",1,50,10);
HHV(H,periodsshort)-atr(periodsshort);
{stop loss level for short positions}
LLV(L,periodslong)+ATR(periodslong);
{stoploss level for long positions}
by Eric Kendall...
Kendall Indicator
periods1:=Input("Periods of ROC",2,50,12);
periods2:=Input("Smoothing Period",1,50,1);
Input("horizontal line 1",-50,50,5);
Input("horizontal line 2",-50,50,-5);
Mov(ROC(C,periods1,%),periods2,S);
from Eric Kendall
Source / From:
http://www.guppytraders.com