| Beginners Forum Interested in trading but don't know where to start? Post any questions you may have here. |
![]() | | Tweet | |
| | #1 | ||
![]() | Inside Bar Indicator? I am wondering if there is an Inside Bar indicator or CCC Indicator for tradestation that works in the Radar Screen? What im basically am looking for is an indicator which on a daily chart tells me if there has been an Inside bar or an CCC in any of the 20-30 pairs that im watching through the Radar Screen. I have been trying to code one myself in Easy Language but unfortunate my skills are not good enough to get it to work... If anyone can point me in the right direction I would be a VERY happy man. | ||
| |
|
| | #2 | ||
![]() | Re: Inside Bar Indicator? http://www.traderslaboratory.com/for...tion-6581.html I do not know if it will work as is or need an adjustment. | ||
| |
|
| | #3 | ||
![]() | Re: Inside Bar Indicator? Im looking for something similar, I do however want it to work in the Radar Screen which this one does not. It could be anything, just plot a point or anything there when there is an Inside Bar so that it draws my attention to that pair, doesn't necessarily need to do anything fancy etc... | ||
| |
|
| | #4 | ||
![]() | Re: Inside Bar Indicator? so it would look something like this (in fact, this should work): Code: if High < High[1] and Low > Low[1] and LastBarOnChart then
begin
Plot1( Close, "IB", red);
Alert("IB Pending");
end
else
NoPlot( 1 ); Cheers! | ||
| |
|
| | #5 | ||
![]() | Re: Inside Bar Indicator? That is very similar to what I wrote, I could not get it work properly though. What Im looking for is very similar to this, I would however like to have the choice of getting indications on both 1 Inside Bar and when there are numerous Inside Bars, the price etc is not important id rather just have a text that says IB or something in the Radar Screen. Also at the moment its indicating whenever there is an inside bar at this very moment which is not necessary. Since im planning on using this for a daily chart I just need notification whenever a bar has closed and not when its about to close. All the help is very much appreciated!! | ||
| |
|
| | #6 | ||
![]() | Re: Inside Bar Indicator? Code: if High < High[1] and Low > Low[1] and High[1] < High[2] and Low[1] > Low[2]and LastBarOnChart then Just change the alerts to whatever you want. Then make sure you set the indicator in radarscreen to NOT update tick-by-tick. Then it will be default only calculate on each bar's close. | ||
| |
|
| The Following User Says Thank You to daedalus For This Useful Post: | ||
Tams (01-26-2010) | ||
| | #7 | ||
![]() | Whenever I add that extra line I get absolutely nothing in my tradestation, im not very good at Easy Language and I am probably doing something wrong. You dont by any chance have the full code I need? | ||
| |
|
| | #8 | ||
![]() | Re: Inside Bar Indicator? Quote:
what do you mean by " get absolutely nothing" ? what have you added? how did you add it? what did you apply to? how?
__________________ Only an idiot would reply to a stupid post | ||
| |
|
![]() |
| Thread Tools | |
| Display Modes | Help Others By Rating This Thread |
| |
| ∧ Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Looking-inside-bar Backtesting (LIBB) Questions | rickek | Coding Forum | 3 | 10-12-2011 07:00 PM |
| Inside day 11-08-2006 | feb2865 | Forex Trading Laboratory | 1 | 09-07-2011 08:13 PM |
| Inside Bar Indicator | bear296 | Coding Forum | 1 | 06-24-2009 02:31 PM |
| Playing Inside Days | Soultrader | E-mini Futures Trading Laboratory | 12 | 03-06-2007 04:10 PM |