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: trader777
About
User Name: trader777
Groups: Member
Rank: Registered User
Real Name:
Location
Occupation:
Interests:
Gender: Gender:
Statistics
Joined: Thursday, December 9, 2010
Last Visit: Friday, March 15, 2019 7:56:59 PM
Number of Posts: 3
[0.00% of all post / 0.00 posts per day]
Avatar
Last 10 Posts
Topic: Symbol specific indicators
Posted: Thursday, December 16, 2010 2:45:06 PM
Thankyou
Topic: Symbol specific indicators
Posted: Thursday, December 16, 2010 12:54:16 AM

Is it possible to have a the value of an indicator based on a specific symbol?
For example, I want to set up a different MA for each symbol in a watch list
and have that information saved permanently.

Thanks

Topic: Newbie real code question
Posted: Sunday, December 12, 2010 3:54:52 PM

Recently started using SF5 and trying to find the code for the
Finite Volume Indicator (FVE) as it originally appeared in the 
April 2003 issue of S & C. The article was "Detecting Breakouts" .
Tried coding it myself without much luck.
The Amibroker code is as follows:
The period should be a user input

 Period = 22; 
// users of v4.25 or higher can use Param to adjust period in real time
//Period = Param("FVE period", 22, 10, 80, 1 );

MF = C - (H+L)/2 + Avg - Ref( Avg, -1 );
Vc = IIf( MF > 0.003 * C, V,
IIf( MF < -0.003 * C, -V, 0 ) );
 
FVE = Sum( Vc, Period )/MA( V, Period )/Period * 100;
Plot( FVE, "FVE", colorRed );
Plot( 0, "", colorBlack, styleNoLabel );
 
GraphXSpace = 3;
 
Buy = Cross( FVE, -5 ) AND
LinRegSlope( FVE, 35 ) > 0 AND
LinRegSlope( Close, 35 ) < 0;
Sell = LinRegSlope( FVE, 25 ) < 0 OR Ref( Buy, -50 );
_SECTION_END();


Any help would be appreciated