Trading with AMA and price action- forward testing

A good trading method/system generates x % average return per month .


  • Total voters
    52

amitrandive

Well-Known Member
#51
If it helps , use the customisable background at the end of your code.

Code:
	_SECTION_BEGIN("Background Color");
BKswitch = ParamToggle("Background Color","On,Off");
 
OUTcolor = ParamColor("Outer Panel Color",colorLightBlue);
INUPcolor = ParamColor("Inner Panel Upper",colorLightYellow);
INDNcolor = ParamColor("Inner Panel Lower",colorSeaGreen);
TitleColor = ParamColor("Title Color ",ColorRGB(245,245,245));
 
if (NOT BKswitch)
{
SetChartBkColor(OUTcolor); // color of outer border
SetChartBkGradientFill(INUPcolor,INDNcolor,TitleColor); // color of inner panel
}
_SECTION_END();
 

Mungus

Well-Known Member
#52
hi,

1. Sorry, the buy-sell part of afl cannot be shared as it is not mine entirely, and there are plans to use it for algo trading in future. so cant be shared to anyone.
your code/template looks very much similar to that Supertrend from Marketcalls.
may be you have taken the idea from there.
 

Mungus

Well-Known Member
#53
If it helps , use the customisable background at the end of your code.

Code:
	_SECTION_BEGIN("Background Color");
BKswitch = ParamToggle("Background Color","On,Off");
 
OUTcolor = ParamColor("Outer Panel Color",colorLightBlue);
INUPcolor = ParamColor("Inner Panel Upper",colorLightYellow);
INDNcolor = ParamColor("Inner Panel Lower",colorSeaGreen);
TitleColor = ParamColor("Title Color ",ColorRGB(245,245,245));
 
if (NOT BKswitch)
{
SetChartBkColor(OUTcolor); // color of outer border
SetChartBkGradientFill(INUPcolor,INDNcolor,TitleColor); // color of inner panel
}
_SECTION_END();
after adding this code at the end of Vijay's code,it lost its main part which is Inside Bar code failed to work.

I guess there's something wrong with the coding part.I wish I could figure out :mad: but I gave up on this.
B4 this code,I use to mark inside bars manually.

nyways thanks Vijay,Amit.
Pls continue posting ur views on vwap.
 

vijkris

Learner and Follower
#54
after adding this code at the end of Vijay's code,it lost its main part which is Inside Bar code failed to work.

I guess there's something wrong with the coding part.I wish I could figure out :mad: but I gave up on this.
B4 this code,I use to mark inside bars manually.

nyways thanks Vijay,Amit.
Pls continue posting ur views on vwap.
BHAI, AMIT JI'S code is fantastic.. no words to describe. :clapping: :clapping:

happy to know that inside bars code is helping u. BTW this is how it looks like



and everything is working normally..
 

vijkris

Learner and Follower
#55
your code/template looks very much similar to that Supertrend from Marketcalls.
may be you have taken the idea from there.
in this thread I have shared afls which identifies sideways and in some ways eliminate sideways. so any trend following system which is 35-40% accurate standalone, will have good increase in accuracy upto 60%, if u combine the strategies.

BTW I agree my buy/sell logic is close to (and better than) supertrend. :D
 
Last edited:

amitrandive

Well-Known Member
#56
in this thread I have shared afls which identifies sideways and in some ways eliminate sideways. so any trend following system which is 35-40% accurate standalone, will have good increase in accuracy upto 60%, if u combine the strategies.

BTW I agree my buy/sell logic is close to supertrend. :D
“In this business if you’re good, you’re right six times out of ten. You’re never going to be right nine times out of ten.” -Peter Lynch
 

wisp

Well-Known Member
#58
finally succeeded in making param to hide the box. also removed time left.
original vwap with lightgrey background added. 15tf original ama added. inside bars with color options added.

this site is annoying, but no choice:
h t tp://www. 4 shared.c om/file/EoYqlIIfbaa/vwap_param_box.html

see u tomo :)
Is this link still valid? I get some error.
 

Similar threads