- Square
- Drawing K-lines using the linear class library as well as the example of a straight line graph
Drawing K-lines using the linear class library as well as the example of a straight line graph
Author:
Inventors quantify - small dreams, Date: 2018-11-12 11:29:51
Tags:
StudyChart
var PreBarTime = 0
function PlotMA_Kline(records, param, isFirst){
var ma = TA.MA(records, param)
$.PlotRecords(records, "K")
if(isFirst){
for(var i = records.length - 1; i >= 0; i--){
if(ma[i] !== null){
$.PlotLine("ma", ma[i], records[i].Time)
}
}
PreBarTime = records[records.length - 1].Time
} else {
if(PreBarTime !== records[records.length - 1].Time){
$.PlotLine("ma", ma[ma.length - 2], records[records.length - 2].Time)
PreBarTime = records[records.length - 1].Time
}
$.PlotLine("ma", ma[ma.length - 1], records[records.length - 1].Time)
}
}
function main(){
var maCyc = MaCyc
var isFirst = true
while(1){
var records = exchange.GetRecords()
if(records && records.length > maCyc){
PlotMA_Kline(records, maCyc, isFirst)
isFirst = false
}
Sleep(1000)
}
}
Related
More