2011年5月26日木曜日

YesLanguage_ストキャスト陽転陰転ポイント

全文;で終わるので、改行しているところはつないで下さいw。
Thenのあとは、何も無し、そのままで文章終わりです。
Crossup、CrossDownは指標設定_チャート表示で点グラフにしてください、点の大きさ(線の太さは)自分で決めてくださいw。
リンクとか広告見てくれて一向に構わないよ、むしろお願いしているような違うようなw。 m(..)m

Input : Period(12), Period1(5), Period2(5), Bought_too_much(70), Sold_too_much(30);
Var : value1(0), value2(0);
value1 = lowest(L,Period);
value2 = highest(H,Period);
Plot1((C-value1)/(value2-value1)*100, "Stochastics_FastK");
Plot2(StochasticsK(Period,Period1), "Stochastics_FastD_Stochastics_SlowK");
Plot3(StochasticsD(Period,Period1,Period2), "Stochastics_SlowD");
PlotBaseLine1(Sold_too_much, "基準線1");
PlotBaseLine2(Bought_too_much, "基準線2");
If CrossDown(StochasticsK(Period,Period1), StochasticsD(Period,Period1,Period2)) Then
Plot4(StochasticsK(Period,Period1), "CrossDown", RED);
If Crossup(StochasticsK(Period,Period1), StochasticsD(Period,Period1,Period2)) Then
Plot5(StochasticsD(Period,Period1,Period2), "Crossup", GREEN);

0 件のコメント: