Search found 457 matches

by henry1224
Tue Dec 26, 2017 7:17 am
Forum: Forum
Topic: Systematic testing?
Replies: 3
Views: 14766

Systematic testing?

what is more realistic, trading the same size lot of shares, the same size amount of capital or the same percentage of account size? Start with a $200000 account size,sample lot of 10 yrs of data, and close all open positions at the end. long only. A: trade 500 share lots and maintain all positions ...
by henry1224
Thu Sep 07, 2017 10:36 am
Forum: EdgeRater Scripting
Topic: How to determine Entry Price
Replies: 3
Views: 14442

Re: How to determine Entry Price

Do a search for Dev Stop in the forum! Another is PSAR
by henry1224
Sun Aug 13, 2017 5:23 pm
Forum: EdgeRater Scripting
Topic: Jackson Zones
Replies: 3
Views: 13684

Re: Jackson Zones

Here is the yearly Jackson Zones HK_Jackson_Zones_Yearly BPy:Fml('My.HK_Jackson_Zones[BP]#Year1'),Width2,ColorBlack; Rangey:=Fml('My.HK_Jackson_Zones[Range]#Year1'); EVy:Fml('My.HK_Jackson_Zones[EV]#Year1'),Width2,ColorRed; DVy:Fml('My.HK_Jackson_Zones[DV]#Year1'),Width2,ColorRed; BVy:Fml('My.HK_Jac...
by henry1224
Sun Aug 13, 2017 5:21 pm
Forum: EdgeRater Scripting
Topic: Jackson Zones
Replies: 3
Views: 13684

Re: Jackson Zones

Here is a Monthly Jackson Zones HK_Jackson_Zones_Monthly BPm:Fml('My.HK_Jackson_Zones[BP]#MONTH1'),Width2,ColorBlack; Rangem:=Fml('My.HK_Jackson_Zones[Range]#MONTH1'); EVm:Fml('My.HK_Jackson_Zones[EV]#MONTH1'),Width2,ColorRed; DVm:Fml('My.HK_Jackson_Zones[DV]#MONTH1'),Width2,ColorRed; BVm:Fml('My.HK...
by henry1224
Sun Aug 13, 2017 5:20 pm
Forum: EdgeRater Scripting
Topic: Jackson Zones
Replies: 3
Views: 13684

Re: Jackson Zones

Here is the Weekly Jackson Zones HK_Jackson_Zones_Weekly BPw:Fml('My.HK_Jackson_Zones[BP]#WEEK1'),Width2,ColorBlack; Rangew:=Fml('My.HK_Jackson_Zones[Range]#WEEK1'); EVw:Fml('My.HK_Jackson_Zones[EV]#WEEK1'),Width2,ColorRed; DVw:Fml('My.HK_Jackson_Zones[DV]#WEEK1'),Width2,ColorRed; BVw:Fml('My.HK_Jac...
by henry1224
Sun Aug 13, 2017 5:18 pm
Forum: EdgeRater Scripting
Topic: Jackson Zones
Replies: 3
Views: 13684

Jackson Zones

here is a Daily formula called HK_Jackson_Zones BP:(H+L+C)/3,Width2,ColorBlack; Range:=(H-L); EV:BP + Range,Width2,ColorRed; DV:BP + (.5*Range),Width2,ColorRed; BV:BP - (.5* Range),Width2,ColorGreen; AV:BP - Range,Width2,ColorGreen; RB2:BP + (Range*1.382),Width2,ColorOrange; RB1:BP + (Range*.618),Wi...
by henry1224
Wed Jul 05, 2017 3:57 pm
Forum: Forum
Topic: Quandl Spreadsheets
Replies: 0
Views: 12905

Quandl Spreadsheets

Chris, I have a few questions about QUANDL spreadsheets 1: will they be able to be read by Edgerater? 2: will I be able to use them in other templates? 3: will I be able to use their values in a chart? 4: will the Quandl code be incorporated into Edgerater? 5: are there any Videos and support in usi...
by henry1224
Fri Jun 16, 2017 7:36 pm
Forum: Forum
Topic: templates malfunction
Replies: 1
Views: 9646

Re: templates malfunction

have you tried to get the latest templates and reinstalling them?
by henry1224
Thu Apr 27, 2017 2:04 pm
Forum: Forum
Topic: ATR MA Bands
Replies: 4
Views: 17110

Re: ATR MA Bands

There are several Lower indicators on the chart! Some of the include the 4 ma rank, Percent buyers vs Sellers, and then there are different systems. My theory is to buy when the 4 MA rank is in a bullish state, entries can be from thr percent buyers vs sellers indicator turns up, along with 2 or 3 o...
by henry1224
Sat Apr 15, 2017 7:13 pm
Forum: EdgeRater Scripting
Topic: 3 Bar net
Replies: 3
Views: 15940

Re: 3 Bar net

here is the code from my end , I get no error messages! Event1:=CDL_Three_Outside()<1; VL1:=VALUEWHEN(L,H>Ref(HHV(H,10),1) & Event1==1); VH1:=VALUEWHEN(H,L<Ref(LLV(L,10),1) & Event1==1); VL2:=ValueWhen(If(Ref(L,1)<VL1,Ref(L,1),If(Ref(L,2)<VL1,Ref(L,2),If(Ref(L,3)<VL1,Ref(L,3),If(Ref(L,4)<VL1...