Hey i was wonder if you guy can edit this and make it so it shows the Complete price because it rounds off. Or tell me
thx all
Inserted Code
int start() { if (Bid_Ask_Colors == True) { if (Bid > Old_Price) FontColor = ForestGreen; if (Bid < Old_Price) FontColor = Red; Old_Price = Bid; } string Market_Price = DoubleToStr(Bid, Digits-1); ObjectCreate("Market_Price_Label", OBJ_LABEL, 0, 0, 0); ObjectSetText("Market_Price_Label", Market_Price, FontSize, FontType, FontColor); ObjectSet("Market_Price_Label", OBJPROP_CORNER, WhatCorner); ObjectSet("Market_Price_Label", OBJPROP_XDISTANCE, 1); ObjectSet("Market_Price_Label", OBJPROP_YDISTANCE, 1);
thx all