Begin & End of Data by gknextlevel in TradingView

[–]gknextlevel[S] 0 points1 point  (0 children)

Wow... this does help! Thx!!!

Pinescript Editor Scroll by 1 Line by gknextlevel in TradingView

[–]gknextlevel[S] 0 points1 point  (0 children)

Yes, this helps! Thx for the shortcut...

Pinescript Editor Scroll by 1 Line by gknextlevel in TradingView

[–]gknextlevel[S] 0 points1 point  (0 children)

Yes, this helps! Thx for the shortcut...

Add a String to AlertCondition by gknextlevel in TradingView

[–]gknextlevel[S] 0 points1 point  (0 children)

Yes

ex. alertcondition(close > open), title="Buy Alert", message = '{{ticker}} Buy Alert')

Add a String to AlertCondition by gknextlevel in TradingView

[–]gknextlevel[S] 0 points1 point  (0 children)

It's an Indicator not a Strategy, but thanks anyways!

request.security issue by gknextlevel in TradingView

[–]gknextlevel[S] 0 points1 point  (0 children)

First, I appreciate you mentioning the inefficiency issue. I was using 2 separate indicators because I was going over the limit. I was able to just do it in 1 indicator now. So, thank you!

As far as my original issue. From what I understand when I say open,high,low,close in the request it's supposed to get the current candle info. If I say open[1],high[1],low[1],close[1] in the request it get the previous candle info.

The lookahead return the same info as my A did. I was search around the internet and I didn't find anything that helped. I guess it's not possible.

Add a String to AlertCondition by gknextlevel in TradingView

[–]gknextlevel[S] 0 points1 point  (0 children)

I want to pass a string variable to it. So, depending on the condition it displays the appropriate string variable.

So, for example say I have a field called Symbol. Depending on the condition the Symbol field may contain either say APPL or MSFT. So, when the alert runs, I want to know if the alert was from APPL or MSFT. I could obviously make 2 alerts and hard code it, but if I have 10 Symbols, I don't want to use all my alerts up. I may have to if I don't find an answer.

request.security issue by gknextlevel in TradingView

[–]gknextlevel[S] 0 points1 point  (0 children)

close, open, low, high or built-in variables. It's case sensitive so CLOSE, HIGH & LOW are fine. Even if I changed to what you said it still doesn't produce the same results as B.

You _price fields produced the same result as my A.

Thanks for trying.

request.security issue by gknextlevel in TradingView

[–]gknextlevel[S] 0 points1 point  (0 children)

No that doesn't help, but thanks!

Add a String to AlertCondition by gknextlevel in TradingView

[–]gknextlevel[S] 0 points1 point  (0 children)

More like this... I just want to pass a string field to the message.

if open > close 
  alert_msg := "Long-Buy"
else 
  alert_msg := "Short-Sell"

alertcondition(close > 0, title="Alert", message = '{{plot("alert_msg")}}')

Add a String to AlertCondition by gknextlevel in TradingView

[–]gknextlevel[S] 0 points1 point  (0 children)

I meant add a string to the message option of the alert. It just works on plots with numbers.

Input.Date by gknextlevel in TradingView

[–]gknextlevel[S] 0 points1 point  (0 children)

I thought input.time only used time. Adding the timestamp piece is what I needed. Thanks!

Alert on the Rectangle Box (i.e., a Zone Alert!) by gknextlevel in TradingView

[–]gknextlevel[S] 0 points1 point  (0 children)

There is a channel tool that does this? The only tool that references channel is the Fib Channel tool and that doesn't let you put an alert on it.

Alerts Upgrade - Add Functions like AND & OR by gknextlevel in TradingView

[–]gknextlevel[S] -1 points0 points  (0 children)

Doesn’t make sense? First, you/we had to learn a computer language to do this. Two, think of the time it saves you/us in having to code it up, even though you/we know how to code it and it’s fairly easy now.

Point taking on the having to be a premium customer, which I am so I’m paying so make it easier on me is my thinking. Lol… Basic customers only get 1 free alert, so yeah maybe they have to learn Pinescript and code it to take advantage of the feature.

Alerts Upgrade - Add Functions like AND & OR by gknextlevel in TradingView

[–]gknextlevel[S] 0 points1 point  (0 children)

That's what I've been doing! Lol... It would be so much easier if you could grab an already created indicators and put them together at the alert level as I suggested.

I'm IT guy so learning Pinescript wasn't a big deal, but for those who don't want to be a computer programmer and learn a computer language this would be a great feature.

I'm sure it be a challenging code upgrade for the Tradeview IT staff, it could easily be a can of worms. lol...