Mike Zang
mikez****@yahoo*****
2007年 12月 16日 (日) 17:31:27 JST
現在のローソク足の間に間隔はないので、ちょっと見づらい、次のように変更す れば視覚的によくなると思います、いかがですか? def Candle_draw(yo, in) if Close DrawLine(in, X, Low, X, High) if Close > Open FillRectangle(yo, X-Dx/2+1, Open, Dx-2, Close-Open) DrawRectangle(in, X-Dx/2+1, Open, Dx-2, Close-Open) elsif Close < Open FillRectangle(in, X-Dx/2+1, Close, Dx-2, Open-Close) else DrawLine(in, X-Dx/2+1, Close, X+Dx/2-2, Close) end end end