Forwarded from A Ht
دوستان فردا یه اموزش میزاریم برای تازه کارها و یا حتی حرفه ای ها، خیلی ساده و کاربردی هست، مطمعنم عاشقش میشید . 😍 کلیپ بسازم یا همینجور بیام بگم ؟ فکر میکنم کلیپ بسازم بهتره، چون اولین نفر فکر کنم تو نت یا گروه ها هستیم که این اموزشو میزاریم و بعدش امکان داره خیلی جاها پخش بشه و به نام خودشون تموم کنند، جایی هم تو نت در موردش پیدا نمیکنید اگه پیدا کردید بیایید جایزه دارید، ابداع کننده اش چون خودمونیم . 😎 در مورد همین فست اسکلپه، خیلی بهتون کمک میکنه تو ترید مخصوصا اونایی که حوصله اموزش زیادی ندارند اونقدر ساده هست که نگو
👍2
سورس اوردر بلاک، تو تریدینگ ویو کپی کنید تا این اندیکاتور اضافه بشه به لیست شما
دسترسی آزاد تریدرها.
سورس اوردر بلاک، تو تریدینگ ویو کپی کنید تا این اندیکاتور اضافه بشه به لیست شما
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/
//@version=5
indicator(title='Order Blocks', shorttitle='سفارشها', overlay=true, max_boxes_count=20)
_v = input.string("1.0.1", title="Version", options=["1.0.1"], group="@amirht2", tooltip="@amirht2")
sens = input.int(28, minval=1, title='حساسیت', group='Order Block', tooltip='هرچه عدد کمتر باشد، تعداد اردر بلاک های بیشتری روی نمودار نمایش داده می شود')
sens /= 100
//OB Colors
col_bullish = input.color(#5db49e, title="Bullish OB Border", inline="a", group="Order Block")
col_bullish_ob = input.color(color.new(#64C4AC, 85), title="Background", inline="a", group="Order Block")
col_bearish = input.color(#ab0000, title="Bearish OB Border", inline="b", group="Order Block")
col_bearish_ob = input.color(color.new(#ab0000, 85), title="Background", inline="b", group="Order Block")
// Alerts
buy_alert = input.bool(title='Buy Signal', defval=true, group='Alerts', tooltip='An alert will be sent when price goes below the top of a bullish order block.')
sell_alert = input.bool(title='Sell Signal', defval=true, group='Alerts', tooltip='An alert will be sent when price goes above the bottom of a bearish order block.')
// Delacring Variables
bool ob_created = false
bool ob_created_bull = false
var int cross_index = na
// Declaring Box Arrays
var box drawlongBox = na
var longBoxes = array.new_box()
var box drawShortBox = na
var shortBoxes = array.new_box()
// Custom Rate of Change (ROC) calculation. This is to calculate high momentum moves in the market.
pc = (open - open[4]) / open[4] * 100
// If the ROC crossover our Sensitivty input - Then create an Order Block
// Sensitivty is negative as this is a Bearish OB
if ta.crossunder(pc, -sens)
ob_created := true
cross_index := bar_index
cross_index
// If the ROC crossover our Sensitivty input - Then create an Order Block
if ta.crossover(pc, sens)
ob_created_bull := true
cross_index := bar_index
cross_index
// -------------------------------
// Bearish OB Creation
// -------------------------------
// Check if we should create a OB, Also check if we haven't created an OB in the last 5 candles.
if ob_created and cross_index - cross_index[1] > 5
float last_green = 0
float highest = 0
// Loop through the most recent candles and find the first GREEN (Bullish) candle. We will place our OB here.
for i = 4 to 15 by 1
if close[i] > open[i]
last_green := i
break
// Draw our OB on that candle - then push the box into our box arrays.
drawShortBox := box.new(left=bar_index[last_green], top=high[last_green], bottom=low[last_green], right=bar_index[last_green], bgcolor=col_bearish_ob, border_color=col_bearish, extend=extend.right)
array.push(shortBoxes, drawShortBox)
// -------------------------------
// Bullish OB Creation
// -------------------------------
// Check if we should create a OB, Also check if we haven't created an OB in the last 5 candles.
if ob_created_bull and cross_index - cross_index[1] > 5
float last_red = 0
float highest = 0
// Loop through the most recent candles and find the first RED (Bearish) candle. We will place our OB here.
for i = 4 to 15 by 1
if close[i] < open[i]
last_red := i
break
// Draw our OB on that candle - then push the box into our box arrays.
drawlongBox := box.new(left=bar_index[last_red], top=high[last_red], bottom=low[last_red], right=bar_index[last_red], bgcolor=col_bullish_ob, border_color=col_bullish, extend=extend.right)
array.push(longBoxes, drawlongBox)
//@version=5
indicator(title='Order Blocks', shorttitle='سفارشها', overlay=true, max_boxes_count=20)
_v = input.string("1.0.1", title="Version", options=["1.0.1"], group="@amirht2", tooltip="@amirht2")
sens = input.int(28, minval=1, title='حساسیت', group='Order Block', tooltip='هرچه عدد کمتر باشد، تعداد اردر بلاک های بیشتری روی نمودار نمایش داده می شود')
sens /= 100
//OB Colors
col_bullish = input.color(#5db49e, title="Bullish OB Border", inline="a", group="Order Block")
col_bullish_ob = input.color(color.new(#64C4AC, 85), title="Background", inline="a", group="Order Block")
col_bearish = input.color(#ab0000, title="Bearish OB Border", inline="b", group="Order Block")
col_bearish_ob = input.color(color.new(#ab0000, 85), title="Background", inline="b", group="Order Block")
// Alerts
buy_alert = input.bool(title='Buy Signal', defval=true, group='Alerts', tooltip='An alert will be sent when price goes below the top of a bullish order block.')
sell_alert = input.bool(title='Sell Signal', defval=true, group='Alerts', tooltip='An alert will be sent when price goes above the bottom of a bearish order block.')
// Delacring Variables
bool ob_created = false
bool ob_created_bull = false
var int cross_index = na
// Declaring Box Arrays
var box drawlongBox = na
var longBoxes = array.new_box()
var box drawShortBox = na
var shortBoxes = array.new_box()
// Custom Rate of Change (ROC) calculation. This is to calculate high momentum moves in the market.
pc = (open - open[4]) / open[4] * 100
// If the ROC crossover our Sensitivty input - Then create an Order Block
// Sensitivty is negative as this is a Bearish OB
if ta.crossunder(pc, -sens)
ob_created := true
cross_index := bar_index
cross_index
// If the ROC crossover our Sensitivty input - Then create an Order Block
if ta.crossover(pc, sens)
ob_created_bull := true
cross_index := bar_index
cross_index
// -------------------------------
// Bearish OB Creation
// -------------------------------
// Check if we should create a OB, Also check if we haven't created an OB in the last 5 candles.
if ob_created and cross_index - cross_index[1] > 5
float last_green = 0
float highest = 0
// Loop through the most recent candles and find the first GREEN (Bullish) candle. We will place our OB here.
for i = 4 to 15 by 1
if close[i] > open[i]
last_green := i
break
// Draw our OB on that candle - then push the box into our box arrays.
drawShortBox := box.new(left=bar_index[last_green], top=high[last_green], bottom=low[last_green], right=bar_index[last_green], bgcolor=col_bearish_ob, border_color=col_bearish, extend=extend.right)
array.push(shortBoxes, drawShortBox)
// -------------------------------
// Bullish OB Creation
// -------------------------------
// Check if we should create a OB, Also check if we haven't created an OB in the last 5 candles.
if ob_created_bull and cross_index - cross_index[1] > 5
float last_red = 0
float highest = 0
// Loop through the most recent candles and find the first RED (Bearish) candle. We will place our OB here.
for i = 4 to 15 by 1
if close[i] < open[i]
last_red := i
break
// Draw our OB on that candle - then push the box into our box arrays.
drawlongBox := box.new(left=bar_index[last_red], top=high[last_red], bottom=low[last_red], right=bar_index[last_red], bgcolor=col_bullish_ob, border_color=col_bullish, extend=extend.right)
array.push(longBoxes, drawlongBox)
دسترسی آزاد تریدرها.
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ //@version=5 indicator(title='Order Blocks', shorttitle='سفارشها', overlay=true, max_boxes_count=20) _v = input.string("1.0.1", title="Version",…
آموزش بارگذاری کد و اضافه کردن اندیکاتور اوردر بلاک به تریدینگ ویو ، میتونید قفلش کنید و پولیش هم کنید تو گوگل سرچ کنید در موردش
تیم ترید جمع کنیم ؟
Anonymous Quiz
85%
بله جمع کنیم .
10%
خیر مسابقه بزاریم .
5%
در صورت شرکت ایدیتونو بزارید
پرسش و پاسخ Q&A
💬 مجددا در رابطه با شدت گام های افزایش نرخ بهره در جلسات آتی، آقای پاول بر ضرورت مشاهده داده های اقتصادی تاکید کردند.
💬 اکنون به سطح بهره خنثی رسیده ایم و قطعا در آینده نیاز خواهد بود تا از شدت اقدامات خود بکاهیم.
💬 مجددا در رابطه با شدت گام های افزایش نرخ بهره در جلسات آتی، آقای پاول بر ضرورت مشاهده داده های اقتصادی تاکید کردند.
💬 اکنون به سطح بهره خنثی رسیده ایم و قطعا در آینده نیاز خواهد بود تا از شدت اقدامات خود بکاهیم.
Forwarded from A Ht
دوبار تا حالا خط اشباع فروش رو به بالا قطع شده یکی در فبریه 2015 یکی هم در فبریه 2019 ، و بعد از اون حدود دوسال طول کشیده تا برسه به سقف قبلیش بیتکوین، زیاد جو زده نشین لطفا با دوتا کندل سبز، در دراز مدت صعودی هست اما چه مدت زیر 30 هزار بمونیم مهمه .
🎮 یک تحقیق در دانشگاه آکسفورد به این نتیجه رسیده مدتی که صرف بازی ویدئویی میشود تاثیری بر سلامت کاربران ندارد یا تاثیر آن ناچیز است.
این پژوهشگران میگویند دلیل بازی، بسیار بیش از مدت آن بر سلامت تاثیر دارد.
این تحقیق در «موسسه اینترنت آکسفورد» وابسته به محموعه علوم اجتماعی دانشکاه آکسفورد انجام شده و پژوهش مشابهی را نقض میکند که همین موسسه دو سال پیش بر روی تعداد کمتری کاربری انجام داد و به این نتیجه رسید کاربرانی که طولانیتر بازی میکنند، شادتر هستند.
📸GettyImages
این پژوهشگران میگویند دلیل بازی، بسیار بیش از مدت آن بر سلامت تاثیر دارد.
این تحقیق در «موسسه اینترنت آکسفورد» وابسته به محموعه علوم اجتماعی دانشکاه آکسفورد انجام شده و پژوهش مشابهی را نقض میکند که همین موسسه دو سال پیش بر روی تعداد کمتری کاربری انجام داد و به این نتیجه رسید کاربرانی که طولانیتر بازی میکنند، شادتر هستند.
📸GettyImages
👍1
کتاب صوتی معامله گری با ذهن اگاهانه توصیه میشه بعد از دوره فوتون البته