수고많으십니다
input : P(5),ADXP(14);
var : mav(0),A(0),clr(0);
mav = ma(C,P);
A = ADX(ADXP);
if mav > mav[1] and A > A[1] Then
{
if A >= 10 and A < 20 Then
clr = Yellow;
if A >= 20 and A < 30 Then
clr = Gold;
if A >= 30 and A < 40 Then
clr = LightMagenta;
if A >= 40 Then
clr = Orange;
}
else if mav < mav[1] and A > A[1] Then
{
if A >= 10 and A < 20 Then
clr = Cyan;
if A >= 20 and A < 30 Then
clr = LightBlue;
if A >= 30 and A < 40 Then
clr = Teal;
if A >= 40 Then
clr = Blue;
}
Else
clr = Black;
Plot1(A,"ADX",clr);
지난번 만들어 주식인데
매수식 시스템 부탁드립니다
지표식중
if A >= 10 and A < 20 Then
clr = Yellow;
이 부분이 완성 돼면 매수
익절10% 손절10%
이런 시스템을 부탁드립니다
감사합니다
답변 1
예스스탁
예스스탁 답변
2025-05-21 10:31:53
안녕하세요
예스스탁입니다.
input : P(5),ADXP(14);
var : mav(0),A(0),clr(0);
mav = ma(C,P);
A = ADX(ADXP);
if mav > mav[1] and A > A[1] Then
{
if A >= 10 and A < 20 Then
clr = Yellow;
if A >= 20 and A < 30 Then
clr = Gold;
if A >= 30 and A < 40 Then
clr = LightMagenta;
if A >= 40 Then
clr = Orange;
}
else if mav < mav[1] and A > A[1] Then
{
if A >= 10 and A < 20 Then
clr = Cyan;
if A >= 20 and A < 30 Then
clr = LightBlue;
if A >= 30 and A < 40 Then
clr = Teal;
if A >= 40 Then
clr = Blue;
}
Else
clr = Black;
if clr != clr[1] and clr == Yellow Then
Buy();
SetStopProfittarget(10,PercentStop);
SetStopLoss(10,PercentStop);
즐거운 하루되세요
> cjfdk 님이 쓴 글입니다.
> 제목 : 문의드립니다
> 수고많으십니다
input : P(5),ADXP(14);
var : mav(0),A(0),clr(0);
mav = ma(C,P);
A = ADX(ADXP);
if mav > mav[1] and A > A[1] Then
{
if A >= 10 and A < 20 Then
clr = Yellow;
if A >= 20 and A < 30 Then
clr = Gold;
if A >= 30 and A < 40 Then
clr = LightMagenta;
if A >= 40 Then
clr = Orange;
}
else if mav < mav[1] and A > A[1] Then
{
if A >= 10 and A < 20 Then
clr = Cyan;
if A >= 20 and A < 30 Then
clr = LightBlue;
if A >= 30 and A < 40 Then
clr = Teal;
if A >= 40 Then
clr = Blue;
}
Else
clr = Black;
Plot1(A,"ADX",clr);
지난번 만들어 주식인데
매수식 시스템 부탁드립니다
지표식중
if A >= 10 and A < 20 Then
clr = Yellow;
이 부분이 완성 돼면 매수
익절10% 손절10%
이런 시스템을 부탁드립니다
감사합니다