I need to AFL

#1
Hello,

I need the color code indicator "TSKPSCORECARDCOLORS" of kwiwpop.
Can someone send me an AFL code that results in the color code?. Thank you very much.

Regards,
 
#2
Enjoy.....


_SECTION_BEGIN("TSKPScoreCardColors");
SetChartOptions(0,chartShowArrows|chartShowDates);
_N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g% (%0.4f%) {{VALUES}}", O, H, L, C, SelectedValue( C - Ref(C, -1)) ));
if( ParamToggle("Tooltip shows", "All Values|Only Prices" ) )
{
ToolTip=StrFormat("Open: %g\nHigh: %g\nLow: %g\nClose: %g (%.1f%%)\nVolume: "+NumToStr( V, 1 ), O, H, L, C, SelectedValue( ROC( C, 1 )));
}
SetBarsRequired(350, -1);

Ctmpl = E_TSKPCOLORTMPL(Open,High,Low,Close,Volume);
total = 0;
total = total + IIf(tskp_colortmplcnd0 > 0, 1, -1);
total = total + IIf(tskp_colortmplcnd1 > 0, 1, -1);
total = total + IIf(tskp_colortmplcnd2 > 0, 1, -1);
total = total + IIf(tskp_colortmplcnd3 > 0, 1, -1);
total = total + IIf(tskp_colortmplcnd4 > 0, 1, -1);
total = total + IIf(tskp_colortmplcnd5 > 0, 1, -1);
total = total + IIf(tskp_colortmplcnd6 > 0, 1, -1);
total = total + IIf(tskp_colortmplcnd7 > 0, 1, -1);
total = total + IIf(tskp_colortmplcnd8 > 0, 1, -1);


Color = IIf(total >= 5, colorBlue, IIf(total <= -5, colorRed, colorYellow) );

Plot( C, "Close", Color , styleNoTitle | ParamStyle("Style") | GetPriceStyle() );
_SECTION_END();
 
#3
Hi
There is nothing to enjoy in this rubbish.
Nine errors in 20 line code.
When you people take the pain of replying spending time and effort
why not not check it up a little more to ensure the AFL works.
Else do not post a rubbish for the sake of posting.
It wastes viewer's time and effort.
SRJC
 
#4
Hi
There is nothing to enjoy in this rubbish.
Nine errors in 20 line code.
When you people take the pain of replying spending time and effort
why not not check it up a little more to ensure the AFL works.
Else do not post a rubbish for the sake of posting.
It wastes viewer's time and effort.
SRJC
the afl is working......there is no error....problem is in ur soft....
 
#6
Hello,

Thank you very much by the code AFL, shaileshbpatel, but I need the unprotected code.
In order to be able to work with this code you must have plugins of Kwiwpop and I want to transfer this AFL to another program of graphs.

Greetings,
 

Similar threads