Jump to content

Recommended Posts

Posted

Hi all,

I want to make afl code which is consist of 2 parameters for different symbols in 1 AFL.

for example: symbol A Cross(MA(C,5),MA(C,20))

symbol B Cross(MA(C,20),MA(C,60))

Anyone who can help me would be appreciate

Posted

Not much of a computer literate. but here is the code I made of Relative Performance. This is how i use 2 symbols .. Edit as per ur need...

 

 

_SECTION_BEGIN("RelPerformance to Index");

_N( IndexSymbol= ParamStr("IndexSymbol", "NIFTY") );

 

SetForeign(IndexSymbol);

IndexClose = Close;

RestorePriceArrays();

_SECTION_END();

 

_SECTION_BEGIN("Sy");

SymbolClose = Close;

_SECTION_END();

RelPerformance = SymbolClose / IndexClose ;

 

Plot( RelPerformance, "RelPerformance to Index", ParamColor( "Color", colorCycle ), styleThick );

///

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...