- Questions
- Chart Studies
Votes
Answers
Views
Question
0
1
93
asked 5 years ago by Shaishav Patel
Category:
Chart Studies
Hi Pete, Is there a feature or can you please make a code to go back to a certain date and time on live chart similar to onDemand? Does OnDemand have regular issues loading charts and mismatch in between current price display on active ladder a...
0
1
386
asked 5 years ago by Juan Banderas
Category:
Chart Studies
Hello Pete, I was working on some code from learning from some of your past posts. However, I am lost when it comes to plotting an arrow when the following condition below in bold is met. Can you use the solution below and show us how to plot an arro...
0
1
125
asked 5 years ago by Destra L
Category:
Chart Studies
hi pete. i love the new videos you are doing! they are awesome. in one of the market tech videos you showed your indicator that shows pullback percentage with colored lines. would you mind sharing the code for it? thanks for reading ru
0
1
520
asked 5 years ago by Diana Weisfeld Tharpe
Category:
Chart Studies
Hey Pete, I've seen a few labels being created but was wondering if you could create a label showing the range of a linear regression channel from upper LR to lower LR. here is the code for the linear regression channel I'm using. input price = close...
0
1
137
asked 5 years ago by Robert Totland
Category:
Chart Studies
Hi Pete, I tried searching for this but I didn't have any luck. I want to plot the high and low for a specific time period, 15:00 to 16:15 for example, but I also want the line to only plot during that time period if possible. I'll show you what I tr...
0
1
212
asked 5 years ago by S S
Category:
Chart Studies
Hello can you help me with the Script that draw line at 7 AM pre market open price. I did saw this def newDay = GetDay() <> GetDay()[1]; def start = newDay or SecondsTillTime(400) == 0; rec premarketOpen = if start then open else premarketOpen[...
0
1
147
asked 5 years ago by B E
Category:
Chart Studies
Good Evening Is there a way to have the MACD Histogram paint the candles the colors that are chosen in the Diff setting in the MACD Customizing Options? For example I change the Positive and Up to Blue and I want the candle to paint Blue, so on and s...
0
1
121
asked 5 years ago by Diana Weisfeld Tharpe
Category:
Chart Studies
Pete, In reference to my question " How to stop indicators from displaying in relation to a linear regression channels (LRC) direction". I've been giving this some thought and may have an idea but still don't know how to implement it. The attached PD...
1
1
228
asked 5 years ago by Kevin Robinson
Category:
Chart Studies
Firstly, a huge thanks to Pete!!!. Without having any background in writing code, I've been writing my own custom, studies, watchlists, strategies, etc for a couple of years now thanks to the information on this site :) I have a piece of code that...
0
0
74
Be first to answer!
asked 5 years ago by Shawn
Category:
Chart Studies
Hi Pete: I've trying to code the accdist indicator to tell me when it moves off of the high or low. Here is my code declare lower; input length = 5; def CLV = CloseLocationValue(); def spxvol = close("$TVOLSPC") - open("$TVOLSPC"); def rutvol = close...