| Coding Forum Collaborate, receive help, or discuss coding related issues. |
![]() | | Tweet | |
| | #1 | ||
![]() | High and Low of User Input Software: Open Ecry Idea: Looking for a way to plot a dot at the high and low of whatever time I put in ( eg, High and Low for RTH only). I know there are a lot of these types of indicators around, the only thing is that using OEC, it doesnt like the use of trendlines. So it would have to use plots. I found one that kind of does what I am looking for, but it takes the High of the Day ( starting at 12:00am). Tried a lot of different things, but no such luck. Any help is appreciated. | ||
| |
|
| | #2 | ||
![]() | Re: High and Low of User Input | ||
| |
|
| | #3 | ||
![]() | Re: High and Low of User Input Quote:
__________________ “ Search is the ultimate expression of the power of the individual, using a computer, looking at the world, and finding exactly what they want ” – Eric Schmidt, Google | ||
| |
|
| | #4 | ||
![]() | Re: High and Low of User Input Quote:
I would like it plot a dot for the High and Low of start and end time that I have the ability to modify. For example: Time Start: 930 Time End: 1615 That would plot a dot for the highest high and highest low for that time. | ||
| |
|
| | #5 | ||
![]() | Re: High and Low of User Input Quote:
It has the ability to use some of the TS indicator's you might have. Doesnt seem to support all of the features, but quite a few. | ||
| |
|
| | #6 | ||
![]() | Re: High and Low of User Input Quote:
Inputs: StartTime(0933), { you'll have to use the closing time of the bar } EndTime(1030); vars: HH(0),LL(0); If Time =StartTime then begin HH=High; LL=Low; end; If Time > StartTime and Time <= EndTime then begin If High > HH then HH = High; If Low < LL then LL = Low; end; If Time >= EndTime then begin Plot1(HH,"HighestHigh"); Plot2(LL,"LowestLow"); end; A little tip....... if you only want it to plot once rather than every bar after the end time, then use this line "If Time = EndTime then begin...." Hope this helps Blu-Ray
__________________ “ Search is the ultimate expression of the power of the individual, using a computer, looking at the world, and finding exactly what they want ” – Eric Schmidt, Google | ||
| |
|
| | #7 | ||
![]() | Re: High and Low of User Input | ||
| |
|
| | #8 | ||
![]() | Re: High and Low of User Input Looks good so far. Just wondering if there was a way to do the following: ![]() So instead of only plotting the High and Low when the end time is reached, it plots the High and low during that time in real time? If not, not a huge deal. Thanks for the help. | ||
| |
|
![]() |
| Thread Tools | |
| Display Modes | Help Others By Rating This Thread |
| |
| ∧ Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Sky High VIX, Driven by a Lack of Leverage? | thrunner | Market Analysis | 3 | 11-26-2008 08:30 AM |
| Trading Plan Development Help (INPUT PLEASE) | ephi144 | Beginners Forum | 8 | 11-09-2008 11:09 PM |
| Value High Value Low and Point of Control | Susana | Market Profile | 4 | 11-04-2008 04:10 AM |
| High, Low, Close for Sept ES? | TraderBG | Beginners Forum | 7 | 10-15-2008 12:36 AM |
| Showme for the high/low bar in last 'x' periods | gighrich | Coding Forum | 4 | 08-22-2007 06:23 PM |