Observer effect
1
Most Volatile & Crazy Month? 6 replies
Anyone try using XAU/USD - XAU/EUR as proxy for EUR/USD? 4 replies
The most volatile pairs? 5 replies
the most volatile instrument 4 replies
Most volatile over the long term? 0 replies
DislikedToday was slow day for me because I was out most of time. So no much trading today Forex: Long XAU +0.16% Short XAU +0.19% Long XAU +0.13% Long XAU +0.07% Long XAU +0.05% Long XAU +0.07% Long XAU +0.07% Long XAU +0.11% UPD Long XAU +0.07% Long XAU +0.14% Total +1.06% Crypto: Short XRPUSDT +0.46% Forex trades made on 1m TF, crypto trades on 1H TF. The logic is the same - volume. {image}{image}Ignored
Disliked{quote} Nice setups on those charts Ryan. I don’t understand how traders can rely on lines (magic stuff apparently) or candle shape patterns (movement lacking substance) without knowing whether directional delta is being accepted or rejected in price movement. Delta offers us confirmation of the big players roadmap and proving Volume is key.Ignored
Disliked{quote} You can create the same, they are pretty simple. First you must declare what MA to use like this: // EMAs ema6low = ta.ema(low, 6) ema6high = ta.ema(high, 6) ema6close = ta.ema(close, 6) ema30close = ta.ema(close, 30) ema60close = ta.ema(close, 60) ema120close = ta.ema(close, 120) ema240close = ta.ema(close, 240) ema480close = ta.ema(close, 480) Next you need to declare, for example, what is previous high, what is low. Like this // Previous High prevhi = high[1] prevhi2 = high[2] prevhi3 = high[3] prevhi4 = high[4] prevhi5 = high[5] and...Ignored
Disliked{quote} Hi just passing by, Will you consider trimming your code by not defining terms such as "ema = ta.ema()", but code them directly in the equations? Same for high[N] Secondly when you was to define close>ema6, how about just use ema6high (and ema6low vise versa), because ema6high is always higher than ema6close and ema6low. Lastly is when ema30 and ema60 is in opposite side of the close, wouldn't it be all ema <30 period on same side as ema30 and >60 on same side as ema60? I haven't verified that. if you want to define ema60 to be >ema240 than...Ignored
Disliked{quote} Hi! Since I'm definitely not a good coder I even don't understand what are you talking aboutFor example I want to place an arrow on the chart at every candle, but the "direction" must be up. What is Up for me? EMA240 > EMA120 and EMA120 > EMA60 and EMA 60 < EMA120 All 3 moving average are is order: red (60) on top, then yellow (120) lower and green (240) is the lowest So I can create a variable uptrend = ta.ema(close, 240) > ta.ema(close, 120) ... then If I want to mark every candle that is higher ema60 and the order is bull then...
Ignored
Disliked{quote} I get you now. Was suggesting to shorten the code a bit. For simple indicators it is okay to be "dirty". I myself am also not good at coding Pinescript but learning when needed. It was when I code my custom indicator into a multi-pair scanner that the trimming start becoming necessary as TV will load slower. So I think it does not hurt to explore ways to tidy the codes even they work perfectly, one being defining less variables. e.g. ema(high,6) is always higher than ema(close,6). {image}Ignored
DislikedToday was slow day for me because I was out most of time. So no much trading today Forex: Long XAU +0.16% Short XAU +0.19% Long XAU +0.13% Long XAU +0.07% Long XAU +0.05% Long XAU +0.07% Long XAU +0.07% Long XAU +0.11% UPD Long XAU +0.07% Long XAU +0.14% Total +1.06% Crypto: Short XRPUSDT +0.46% Forex trades made on 1m TF, crypto trades on 1H TF. The logic is the same - volume. {image}{image}Ignored
Disliked{quote} So, basically you want delta confirmation on MA bounce....... I have nat gas chart below. Am I doing correctly? {image}Ignored
Disliked{quote} Yes, but I also check the distance from MA, MA order, candle size, time. And delta size of course too.Ignored
DislikedAnyone use cumulative delta volume like this? {image} I tried to figure out practical and effective usages of cumulative delta years ago but couldn't figure it out. However, it still looks have some potentials..........Any feedback?
Ignored
Disliked{quote} But when this marked candle shows positive delta is it confirmation to keep long position going on?Ignored
DislikedAnyone use cumulative delta volume like this? {image} I tried to figure out practical and effective usages of cumulative delta years ago but couldn't figure it out. However, it still looks have some potentials..........Any feedback?
Ignored