یکی از مشکلات بسیار رایج موقع برنامهنویسی پاین، مشکل Repainting میباشد. این قسمت از آموزش، مثالی از این مشکل و روش حل اون هستش:
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © coingramsite //@version=4 study("Lesson 11",overlay=true) //User Input res = input(title="Timeframe", type=input.resolution, defval="D") cal_function(_symbol,_res,_src) => security(_symbol,_res,_src[barstate.isrealtime ? 1 : 0]) //Get Price Data hh = cal_function(syminfo.tickerid,res,high) ll = cal_function(syminfo.tickerid,res,low) plot(hh , color=color.red, title = "Higher High") plot(ll , color=color.green, title = "Lower Low")
برای مشاهده ویدیوی آموزشی این قسمت میتوانید از این لینک اقدام فرمایید.
ارسال نظر