vitvlkv

Time Frame Superimpose

631
Filled area shows a "candle body" of a higher time frame. So we get a superimposition of current and any other higher time frame on the same chart!
Request from here getsatisfaction.com/..._in_the_same_browser
نص برمجي مفتوح المصدر

قام مؤلف هذا النص البرمجي بنشره وجعله مفتوح المصدر، بحيث يمكن للمتداولين فهمه والتحقق منه، وهو الأمر الذي يدخل ضمن قيم TradingView. تحياتنا للمؤلف! يمكنك استخدامه مجانًا، ولكن إعادة استخدام هذا الكود في منشور تحكمه قواعد الموقع. يمكنك جعله مفضلاً لاستخدامه على الرسم البياني.

إخلاء المسؤولية

لا يُقصد بالمعلومات والمنشورات أن تكون، أو تشكل، أي نصيحة مالية أو استثمارية أو تجارية أو أنواع أخرى من النصائح أو التوصيات المقدمة أو المعتمدة من TradingView. اقرأ المزيد في شروط الاستخدام.

هل تريد استخدام هذا النص البرمجي على الرسم البياني؟
study("Time Frame Superimpose", shorttitle="TFSupImp", overlay=true)
res = input("W", type=resolution)
o = security(tickerid, res, open)
c = security(tickerid, res, close)
col = c >= o ? lime : red
po = plot(o, color=col, title="Open")
pc = plot(c, color=col, title="Close")
fill(po, pc)