投资者咨询:老师帮忙写两种柱线 (文华财经wh9)
来源:文华财经 日期:2020-7-30 19:01
技术人员回复
日期:2020-7-30 19:04
参考;
Vars
Numeric DD;
Numeric KK;
Begin
DrawLine3(CrossDown(ISUP,0.5),Ref(HHV(High,BarsLastCount(isup)),1) ,1,1,Ref(LLV(low,BarsLastCount(isup)),1),1,0,Red );
DrawLine3(CrossDown(ISUP,0.5),Ref(HHV(High,BarsLastCount(isup)),1) ,1,1,Ref(HHV(High,BarsLastCount(isup)),1),Ref(BarsLastCount(isup),1),0,Red );
DrawLine3(CrossDown(ISUP,0.5),Ref(LLV(low,BarsLastCount(isup)),1) ,1,1,Ref(LLV(low,BarsLastCount(isup)),1),Ref(BarsLastCount(isup),1),0,Red );
DrawLine3(CrossDown(ISUP,0.5),Ref(HHV(High,BarsLastCount(isup)),1) ,Ref(BarsLastCount(isup),1),1,Ref(LLV(low,BarsLastCount(isup)),1),Ref(BarsLastCount(isup),1),0,Red );
DrawLine3(CrossDown(IsDown,0.5),Ref(HHV(High,BarsLastCount(IsDown)),1) ,1,1,Ref(LLV(low,BarsLastCount(IsDown)),1),1,0,Green );
DrawLine3(CrossDown(IsDown,0.5),Ref(HHV(High,BarsLastCount(IsDown)),1) ,1,1,Ref(HHV(High,BarsLastCount(IsDown)),1),Ref(BarsLastCount(IsDown),1),0,Green );
DrawLine3(CrossDown(IsDown,0.5),Ref(LLV(low,BarsLastCount(IsDown)),1) ,1,1,Ref(LLV(low,BarsLastCount(IsDown)),1),Ref(BarsLastCount(IsDown),1),0,Green );
DrawLine3(CrossDown(IsDown,0.5),Ref(HHV(High,BarsLastCount(IsDown)),1) ,Ref(BarsLastCount(IsDown),1),1,Ref(LLV(low,BarsLastCount(IsDown)),1),Ref(BarsLastCount(IsDown),1),0,Green );
End
投资者咨询:老师帮忙写两种柱线 (文华财经wh9)
来源:文华财经 日期:2020-7-30 19:01
技术人员回复
日期:2020-7-30 19:43
投资者咨询:老师帮忙写两种柱线 (文华财经wh9)
来源:文华财经 日期:2020-7-30 19:01
想画到附图里面,好对比高低用的
技术人员回复
日期:2020-7-30 20:06
投资者咨询:老师帮忙写两种柱线 (文华财经wh9)
来源:文华财经 日期:2020-7-30 19:01
投资者咨询:老师帮忙写两种柱线 (文华财经wh9)
来源:文华财经 日期:2020-7-30 19:01
如果是连阳或连阴,在最后一根阳或阴,K位置标注一根柱子就可以
技术人员回复
日期:2020-7-30 20:53
参考:
Begin
DrawLine3(CrossDown(Every(IsUp,2),0.5),0 ,1,CrossDown(Every(IsUp,2),0.5),10,1,0,Red );
DrawLine3(CrossDown(Every(IsDown,2),0.5),0 ,1,CrossDown(Every(IsDown,2),0.5),10,1,0,Green );
End
投资者咨询:老师帮忙写两种柱线 (文华财经wh9)
来源:文华财经 日期:2020-7-30 19:01