Dọn sạch tất cả nhật ký thu nhập, biểu đồ thu nhập.
LogProfitReset (() LogProfitReset ((remain)
Cácremain
tham số được sử dụng để xác định số lượng ghi nhật ký (giá trị số nguyên) để giữ.
ở lại
sai
số
function main() {
// Print 30 points on the revenue chart, then reset and keep only the last 10 points
for(var i = 0; i < 30; i++) {
LogProfit(i)
Sleep(500)
}
LogProfitReset(10)
}
def main():
for i in range(30):
LogProfit(i)
Sleep(500)
LogProfitReset(10)
void main() {
for(int i = 0; i < 30; i++) {
LogProfit(i);
Sleep(500);
}
LogProfitReset(10);
}
{@fun/Log/LogProfit LogProfit}
LogProfit LogStatus