Download software Tutorial videos
Subscription & data-feed pricing Class schedule


New account application Trading resources
Margin rates Stock & option commissions

Attention: Discussion forums are read-only for extended maintenance until further notice.
Welcome Guest, please sign in to participate in a discussion. Search | Active Topics |

Profile: glenny10
About
User Name: glenny10
Groups: Gold User, Member, TeleChart
Rank: Registered User
Real Name:
Location
Occupation:
Interests:
Gender: Unsure
Statistics
Joined: Thursday, November 15, 2007
Last Visit: Wednesday, May 28, 2008 9:29:31 PM
Number of Posts: 8
[0.00% of all post / 0.00 posts per day]
Avatar
Last 10 Posts
Topic: realcode charts patterns
Posted: Monday, May 19, 2008 5:07:23 PM
does anyone have the realcode for chart pattern scans.......triangles, head and shoulders, double bottoms, or even consolidations.   
Topic: CANDLE STICK PATTERNS FOR BLOCKS
Posted: Saturday, April 19, 2008 3:34:13 PM
thanks craig
Topic: CANDLE STICK PATTERNS FOR BLOCKS
Posted: Friday, April 18, 2008 2:33:42 PM
DO YOU GUYS HAVE ANY REALCODE FORMULAS FOR CANDLE STICK PATTERNS. I HAVE THE HAMMER FORMULA FROM THE VIDEO BUT I WAS LOOKING FOR OTHERS, SUCK AS BEARISH ENGULFING, BULLISH ENGULFING, MORNING AND EVENING STARS, DARK CLOUD AND PIERCING PATTERNS...

IF THERE IS ALREADY A PLACE TO FIND THESE THINGS THEN PLEASE DIRECT ME IN THE RIGHT DIRECTION

THANKS
Topic: Blocks-Real Code
Posted: Friday, April 18, 2008 2:32:36 PM
DO YOU GUYS HAVE ANY REALCODE FORMULAS FOR CANDLE STICK PATTERNS. I HAVE THE HAMMER FORMULA FROM THE VIDEO BUT I WAS LOOKING FOR OTHERS, SUCK AS BEARISH ENGULFING, BULLISH ENGULFING, MORNING AND EVENING STARS, DARK CLOUD AND PIERCING PATTERNS...

IF THERE IS ALREADY A PLACE TO FIND THESE THINGS THEN PLEASE DIRECT ME IN THE RIGHT DIRECTION

THANKS
Topic: trendlines
Posted: Thursday, April 17, 2008 4:01:51 PM
here is a formula i have found for another popular product...can you do anything with this?

Up/Down Trend Lines:

 

{ExtFml("Trend.Line",  DataArray, MinTouchPoints, %Tolerance, Type)}

{ User inputs }
MinT:=Input("Minimum Touch Points",1,100,3);
PerT:=Input("Penetrating Tolerance %",0,100,2);

{ Trendlines }
Up:=ExtFml("Trend.Line",C,MinT,PerT,U);
Down:=ExtFml("Trend.Line",C,MinT,PerT,D);

{ Plot on price chart }
Up;Down

 

Trendline breakout signals:

{ExtFml("Trend.Signals",   DataArray, MinTouchPoints, %Tolerance) }

{ User inputs }
MinT:=Input("Minimum Touch Points",1,100,3);
PerT:=Input("Penetrating Tolerance %",0,100,2);
plot:=Input("Signals:  [1]Clean,  [2]All,  [3]Trade binary",1,3,1);
delay:=Input("Entry and Exit delay",0,5,0);

{ All trendline breakout signals }
all:=ExtFml("Trend.Signals",C,MinT,PerT);

{ Entry/Exit signals }
entry:=all=1;
exit:=all=-1;

{ Clean signals }
init:=Cum(IsDefined(entry+exit))=1;
bin:=ValueWhen(1,entry-exit<>0 OR init,entry);
long:=bin AND (Alert(bin=0,2) OR init);
short:=bin=0 AND (Alert(bin,2) OR init);
signals:=long-short;

{ Plot signals in own window }
Ref(If(plot=1,signals,
 If(plot=2,all,bin)),-delay

Topic: trendlines
Posted: Thursday, April 17, 2008 3:54:35 PM
hmm....ill have to try and find that...im not that smart..hahha...
Topic: trendlines
Posted: Wednesday, April 16, 2008 5:06:36 PM
when i evaluate a chart i often use the RS vs S&P. OBV, RSI, MACD Hist as my indicators. when i do so , i draw trendlines on the price and all of the indicators to find potential breakouts. i was hoping there would be a way to make a scan for breakouts of these trendlines. somewhat like that of a triple top breakout, but for the indicators i mentioned above. im not sure how i could word it in realcode, but im sure it can be done somehow since a trend line can be explained in an equation. maybe..haha
Topic: trendlines
Posted: Wednesday, April 16, 2008 12:13:42 PM

can you plot trendlines on realcode some how. what i am trying to do its scan for stocks breaking up through or down through a certain trendline so i can capture breakouts as they happen. any suggestions?