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: sejong
About
User Name: sejong
Groups: Gold User, Member, Platinum User, TeleChart
Rank: Registered User
Real Name:
Location
Occupation:
Interests:
Gender: Unsure
Statistics
Joined: Thursday, December 11, 2008
Last Visit: Sunday, November 27, 2016 4:46:10 PM
Number of Posts: 39
[0.01% of all post / 0.01 posts per day]
Avatar
Last 10 Posts
Topic: PCF MA cross over
Posted: Wednesday, March 2, 2016 4:23:44 PM

I'd like to get PCF on both direction UP or Down, and I prefer it still need to be on the correct side.

Topic: PCF MA cross over
Posted: Monday, February 29, 2016 10:07:57 PM
Hi Bruce.
I would like to create two separate moving average cross over PCF for the following condition.
 
1. 3 days time frame.
2. crossing over within the last 4 bars (include 4, 3, 2, & 1 days ago).
3. 10EMA Close vs 10EMA Open on Candlesticks 
 
1. 3 days time frame.
2. crossing over within the last 4 bars (include 4, 3, 2, & 1 days ago).
3. 10EMA Close vs 10EMA Open on Heiken-Ashi bars
 

 

Topic: PCF of MFO
Posted: Sunday, October 25, 2015 11:07:35 PM

Hi Bruce.

I would like to get pcf of 20 & 50 periods Money Flow Oscillator indicator mentioned on October 2015 S &C magazine.

Calculating the MFO

1. Multiplier=[( High - Previous low) - ( Previous high - low)] / [( High - previous low) + ( previous high - low)]

2. Money Flow Volume = Multiplier x Volume for the period.

3. 20 period MFO = 20 period sum of money flow volume / 20 period sum of volume.

Topic: PCF Price close range
Posted: Sunday, April 26, 2015 4:43:43 PM

I would like to write pcf that will scan when today's bar closes in the top 20%, and bottom 20% of it's range.

Topic: PCF Price close range
Posted: Sunday, April 26, 2015 4:09:55 PM

I would like to write pcf that will scan when today's bar closes in the top 20%, and bottom 20% of it's range.

Topic: PCF HL indicator
Posted: Friday, March 6, 2015 3:42:29 PM

Hi Bruce

Please help to create H/L breakout indicator using PCF.

Thank you in advance.

Topic: PCF HL indicator
Posted: Sunday, March 1, 2015 10:43:49 AM
HLB - High/Low Breakout - is just a variable name and could be any user defined variable name
 
PREV command - This is function that allows the user to create a self-referencing formula
indicator + PREV - allows recursive addition of indicator and its previous value.  Example usage id this would be needed to create an EMA
 
Cum(1) formula - Calculates an indicator that rises one point for each day since the beginning of the chart.
 
ROC is simply Rate of Change - ROC( Data Array, Periods, Diff-Method)
(Diff-Method either Percent or %, Points or $)
 
HHV - Highest High Value - HHV( Data Array, Periods)
Topic: PCF HL indicator
Posted: Wednesday, February 25, 2015 10:44:09 PM

Hi Bruce

Can you convert High/Low metastock formulal to PCF?

HLB:=If(Cum(1)=4, If(H>Ref(H,-1),H,L),
If(PREV>=Ref(H,-1) AND ROC(H,1,$)>0, Max(H,PREV),
If(PREV<=Ref(L,-1) AND ROC(L,1,$)<0, Min(L,PREV),
If(PREV>=Ref(H,-1) AND H<=HHV(L,5),L,
If(PREV<=Ref(L,-1) AND L>=LLV(H,4),H,PREV)))));
HLB
Topic: High/Low indicator
Posted: Sunday, February 22, 2015 11:31:15 AM

Could you help me to use MetaStock formula to TC2000?

HLB:=If(Cum(1)=4, If(H>Ref(H,-1),H,L),
If(PREV>=Ref(H,-1) AND ROC(H,1,$)>0, Max(H,PREV),
If(PREV<=Ref(L,-1) AND ROC(L,1,$)<0, Min(L,PREV),
If(PREV>=Ref(H,-1) AND H<=HHV(L,5),L,
If(PREV<=Ref(L,-1) AND L>=LLV(H,4),H,PREV)))));
HLB
Topic: Add conditions to EasyScan
Posted: Sunday, December 7, 2014 7:02:14 PM

When I add another conditions form the chart, assuming it is represent an "AND" situation.

How to add  alternatives conditions represent "OR" situation.