ช่วยหน่อยครับ พอดีหาอ่านข้อมูลเก่าๆแล้วแต่ยังไม่สามารถเก็บค่าไว้ในArrayได้ คือผมอยากเก็บค่า X,Y, Price ตอนคลิกบนหน้าจอทุกครั้งที่คลืกก็จะเก็บค่าเอาไว้ครับ
ไม่ทราบว่า code ที่เขียนผิดตรงไหนครับช่วยแก้หน่อยครับ
double Stor_X[],
Stor_Y[];
void OnChartEvent(const int id,
const long &lparam,
const double &dparam,
const string &sparam)
{
int Window = 0;
int X = (int)lparam;
int Y = (int)dparam;
if(id==CHARTEVENT_CLICK) //--- the mouse has been clicked on the chart
{
Stor_X[X] = X;
Stor_Y[Y] = Y;
Print("Stor_X=", Stor_X[X]);// ปริ้นดูแล้วค่าที่ได้ยังเป็นศูนย์
Print("Stor_Y=", Stor_Y[Y]);// ปริ้นดูแล้วค่าที่ได้ยังเป็นศูนย์
}
}