Q&A 게시판 HOME > Q&A 게시판
작성자 : 예스스탁 작성일 : 2024-04-26 14:09:42 조회수 : 97
Re:키움차트수식인데  그물망차트 쓸수있을까요?
안녕하세요

1. 테마 그물망
input : P1(10),P2(20),P8(60);
var : t1(0),t2(0),t8(0);

t1=ema(ema(ema(c,p1),p1),p1);
t2=ema(ema(ema(c,p2),p2),p2);
t8=ema(ema(ema(c,P8),P8),P8);

var1 = ema(ema(ema(c,(p1+p8)/2),(p1+p8)/2),(p1+p8)/2);

value1 = iff(c>var1 && low>t8,MAX(c,o),0);
value2 = iff(c<var1 && high>t8,max(c,o),0);

if value1 > 0 Then
Plot1(value1,"수식1");
Else
NoPlot(1);

if value2 > 0 Then
Plot2(value2,"수식2");
Else
NoPlot(2);

Plot3(min(c,o),"수식3");
plot4(t1,"수식4");


2. 테마그물망2

input : P2(6),P3(9),P4(12);
var : t2(0),t3(0),t4(0);

t2=ema(ema(ema(c,p2),p2),p2);
t3=ema(ema(ema(c,p3),p3),p3);
t4=ema(ema(ema(c,P4),P4),P4);

Var2 = iff(t2<t3,t2,t2-(t2-t3));
Var4 = iff(t3<t4,t3,t3-(t3-t4));

Plot1(t2,"수식1");
Plot2(Var2,"수식2");
Plot3(t3,"수식3");
plot4(Var4,"수식4");
plot5(t4,"수식5");


3 테마그물망3

input : P4(12),P5(15),P6(18),P7(21);
var : t4(0),t5(0),t6(0),t7(0);

t4=ema(ema(ema(c,p4),p4),p4);
t5=ema(ema(ema(c,p5),p5),p5);
t6=ema(ema(ema(c,P6),P6),P6);
t7=ema(ema(ema(c,P7),P7),P7);

Var1 = iff(t4<t5,t4,t4-(t4-t5));
Var3 = iff(t5<t6,t5,t5-(t5-t6));
Var6 = iff(t6<t7,t6,t6-(t6-t7));

Plot1(var1,"수식1");
Plot2(t5,"수식2");
Plot3(Var3,"수식3");
plot4(t6,"수식4");
plot5(Var6,"수식5");


4.테마그물망4

input : P7(21),P8(24);
var : t7(0),t8(0);

t7=ema(ema(ema(c,p7),p7),p7);
t8=ema(ema(ema(c,P8),P8),P8);

Var2 = iff(t7<t8,t7,t7-(t7-t8));

Plot1(t7,"수식1");
Plot2(Var2,"수식2");
Plot3(t8,"수식3");

if C > T8 Then
plot4(T8,"수식4");
Else
NoPlot(4);

if C < T8 Then
plot5(T8,"수식5");
Else
NoPlot(5);

즐거운 하루되세요





>> 한솔 님이 쓴 글입니다.

>> 제목 : 키움차트수식인데  그물망차트 쓸수있을까요?테마 그물망
수식1 수식이름 :매수
t1=tema(c,p1);
t2=tema(c,p2);
t8=tema(c,P8);
if(c>tema(c,(p1+p8)/2) && low>t8,MAX(c,o),0)
수식2 매도
if(c<tema(c,(p1+p8)/2) && high>t8,max(c,o),0)
수식3 0
min(c,o)
수식4  1
T1
수식5  2
if(t1<t2,t1,t1-(t1-t2))
지표조건설정
P1~3
P2~6
p8~24
테마그물망2
수식1  3
t2=tema(c,p2);
t3=tema(c,p3);
t4=tema(c,p4);
T2
수식2  4
if(t2<t3,t2,t2-(t2-t3))
수식3  5
T3
수식4  6
if(t3<t4,t3,t3-(t3-t4))
수식5  7
T4
지표조건설정
P2~6
P3~9
P4~12
테마그물망3
수식1  7
t4=tema(c,p4);
t5=tema(c,p5);
t6=tema(c,p6);
t7=tema(c,p7);
if(t4<t5,t4,t4-(t4-t5))
수식2   8
T5
수식3   9
if(t5<t6,t5,t5-(t5-t6))
수식4  10
T6
수식5   11
if(t6<t7,t6,t6-(t6-t7))
지표조건설정
P4~12
P5~15
P6~18
P7~21
테마그물망4
수식1  12
t7=tema(c,p7);
t8=tema(c,p8);
T7
수식2 13
if(t7<t8,t7,t7-(t7-t8))
수식3 14
T8
수식4 15
IF(C>T8,T8,0)
수식5 16
IF(C<T8,T8,0)
지표조건설정
P7~21
P8~24
목록 답변