Systems Workshop: "Buttonwood" E-mini daytrading system

Post anything related to mechanical systems and automated trading here.
orionsbelt
Posts: 33
Joined: Tue Jul 21, 2015 9:19 pm
Contact:

Re: Systems Workshop: "Buttonwood" E-mini daytrading system

Post by orionsbelt » Thu Dec 24, 2015 4:19 am

i started running those tests.
in the meanwhile here is the v5 code with the original buttonwood SMA fast/slow averages and the reverse EMA channel breakout

Code: Select all

#Trades simple moving average crosses, but only on days with hits
#on Buttonwood chart
#thresh = we have to have this many hits on our chart to get permission to trade
#orb = how many degrees to allow in order to count a hit
#correction = how many days to add or subtract from Jack Gillens 1792 date

#change log:
#version 2: 10/16/2015
#added spherical currenttonatal option
#fixed a couple loop counter bugs in currenttonatal and currenttoprogressed

#version 3: 10/17/2015
#added sphericalconjunctions (only conjunctions now)
#rectified natal date: thresh =6, orb = 8, correction = 0.5236
#best progressed options: thresh = 3, orb = 1, correction = 0.25

#version 4: 10/21/2015
#added a once_per_day input, which allows astro to only compute once in a given day (for speed)
#rebuild weather functions to allow for once_per_day, as well as to compute for any day requested
#merged two weather functions together into one big filter

#version 5: 11/4/2015
#implemented new signals using 12/46/7 parameters, as well as AMA channel breakout
#moved those trigger parameter lengths back to input line for the time being
#   fast_avg, slow_avg, and channel_avg
#no trades after 14:30 ET - moved it to the no_trades_after parameter

# --------------------------------------------------------------------------

input:progressed_thresh(3),spherical_thresh(6),astro_once_per_day(true),len1(16),len2(46),len3(128),no_trades_after(1430),orb(1);

signal1 = buttonwood_signal(len1,len2);
signal2 = channel_breakout_my_reverse_breakout_xaverage(len3);

#init variables - this block only happens once at the beginning
if (barnum==barsback)
{
    #these are the weather parameters
    #move them back to inputs if you want to tweak the values more
    progressed_orb = 1;
    progressed_correction = 0.25;   
    progressed_index = 0;

    spherical_orb = 8;
    spherical_correction = 0.5236;
    spherical_index = 0;

    #internal variables initialize here
    signal = 0;
    bs = 0;
    market_weather_filter,other_filters,ok_to_trade=false;
}

#market weather computation ----------------------------------

progressed_index = Buttonwood_Index_ProgressedToNatal_v2(year,month,day,time,progressed_orb,progressed_correction,astro_once_per_day);
spherical_index = Buttonwood_Index_SphericalConjunctions_v2(year,month,day,time,spherical_orb,spherical_correction,astro_once_per_day);

market_weather_filter=false;
if ((spherical_index >= spherical_thresh) or (progressed_index >= progressed_thresh))
    market_weather_filter=true;


#other filters -----------------------------------------------

other_filters = Buttonwood_AdditionalFilters(no_trades_after);


# combine all filters and set ok_to_trade to correct value ---

ok_to_trade = market_weather_filter;
if ((ok_to_trade == true) and (other_filters == false))
    ok_to_trade=false;


#compute trading signal --------------------------------------

signal1 = buttonwood_signal(len1,len2);
signal2 = channel_breakout_my_reverse_breakout_xaverage(len3);
signal = signal1 + signal2;

#actually place trades ---------------------------------------
if (ok_to_trade==true) {
    if ((signal>0) and (bs<=0)) {
        buy(1,close,"market","onebar");
        bs=1;
    }
    if ((signal<0) and (bs>=0)) {
        sell(1,close,"market","onebar");
        bs=-1;
    }
}
else {
    if ((bs>0) and (signal<0)) {
        exitlong(0,close,"market","onebar");
        bs=0;
    }
    if ((bs<0) and (signal>0)) {
        exitshort(0,close,"market","onebar");
        bs=0;
    }
}

#end of day exit
if (time==endtime) {
    exitlong(0,close,"market","onebar");
    exitshort(0,close,"market","onebar");
    bs=0;
}

and the channel_breakout_my_reverse_breakout_xaverage function

Code: Select all

#length: 5
input:length;

if (barnum==barsback) {
    signal=0;
}

high_channel=xaverage(high,length);
low_channel=xaverage(low,length);

if (close > high_channel) {
    signal = 1;
}
if (close < low_channel) {
    signal = -1;
}

return signal; 

and here is the v7 code with the original buttonwood SMA fast/slow averages and the reverse EMA channel breakout

Code: Select all

#Trades simple moving average crosses, but only on days with hits
#on Buttonwood chart
#thresh = we have to have this many hits on our chart to get permission to trade
#orb = how many degrees to allow in order to count a hit
#correction = how many days to add or subtract from Jack Gillens 1792 date

#change log: ---------------------------------------------------------------

#version 2: 10/16/2015
#added spherical currenttonatal option
#fixed a couple loop counter bugs in currenttonatal and currenttoprogressed

#version 3: 10/17/2015
#added sphericalconjunctions (only conjunctions now)
#rectified natal date: thresh =6, orb = 8, correction = 0.5236
#best progressed options: thresh = 3, orb = 1, correction = 0.25

#version 4: 10/21/2015
#added a once_per_day input, which allows astro to only compute once in a given day (for speed)
#rebuilt weather functions to allow for once_per_day, as well as to compute for any day requested
#merged two weather functions together into one big filter

#version 5: 11/4/2015
#implemented new signals using 12/46/7 parameters, as well as AMA channel breakout
#moved those trigger parameter lengths back to input line for the time being
#   fast_avg, slow_avg, and channel_avg
#no trades after 14:30 ET - moved it to the no_trades_after parameter

#version 6: 12/15/2015
#added an equity curve filter - only trade if we have won one trade in a row or fewer
#   including losses. Turn this on and off with the equity_curve_filter parameter

#version 7: 12/16/2015
#rather than not trading during 2+ winning trades in a row as per v6, this one
#scales size up when in a losing streak, and down when in a winning one, but never goes flat
#this boosts average trade and reduces drawdown, giving us better performance numbers than v6

# --------------------------------------------------------------------------

input:len1(16),len2(46),len3(128),no_trades_after(1430),orb(1),progressed_thresh(3),
    spherical_thresh(6),astro_once_per_day(true),equity_curve_filter(true);

signal1 = buttonwood_signal(len1,len2);
signal2 = channel_breakout_my_reverse_breakout_xaverage(len3);


#init variables - this block only happens once at the beginning ------------
if (barnum==barsback)
{
    #these are the weather parameters
    #move them back to inputs if you want to tweak the values more
    progressed_orb = 1;
    progressed_correction = 0.25;
    progressed_index = 0;

    spherical_orb = 8;
    spherical_correction = 0.5236;
    spherical_index = 0;

    #internal variables initialize here
    signal = 0;
    bs = 0;
    market_weather_filter,other_filters,ok_to_trade=false;

    #use these for tracking the equity curve and streaks
    sim_entry=close;
    sim_bs=1;
    sim_last_trade=0;
    sim_streak=0;
    sim_filter=true;

    #how many contracts to trade
    cts=1;

}

#market weather computation -------------------------------------------------

progressed_index = Buttonwood_Index_ProgressedToNatal_v2(year,month,day,time,progressed_orb,progressed_correction,astro_once_per_day);
spherical_index = Buttonwood_Index_SphericalConjunctions_v2(year,month,day,time,spherical_orb,spherical_correction,astro_once_per_day);

market_weather_filter=false;
if ((spherical_index >= spherical_thresh) or (progressed_index >= progressed_thresh))
    market_weather_filter=true;


#other filters --------------------------------------------------------------

other_filters = Buttonwood_AdditionalFilters(no_trades_after);


# combine all filters and set ok_to_trade to correct value ------------------

ok_to_trade = market_weather_filter;
if ((ok_to_trade == true) and (other_filters == false))
    ok_to_trade=false;


#compute trading signal ----------------------------------------------------

signal1 = buttonwood_signal(len1,len2);
signal2 = channel_breakout_my_reverse_breakout_xaverage(len3);

signal = signal1 + signal2;


#track simulated equity curve ---------------------------------------------
if (ok_to_trade==true) {
    if ((signal>0) and (sim_bs<=0)) {

        if (sim_bs<0) {
            sim_last_trade = sim_entry-close;
            if (sim_last_trade>0) {
                if (sim_streak<0) sim_streak=1;
                else sim_streak+=1;
            }
            if (sim_last_trade<0) {
                if (sim_streak>0) sim_streak=-1;
                else sim_streak-=1;
            }
        }

        sim_bs=1;
        sim_entry=close;
    }
    if ((signal<0) and (sim_bs>=0)) {

        if (sim_bs>0) {
            sim_last_trade = close-sim_entry;
            if (sim_last_trade>0) {
                if (sim_streak<0) sim_streak=1;
                else sim_streak+=1;
            }
            if (sim_last_trade<0) {
                if (sim_streak>0) sim_streak=-1;
                else sim_streak-=1;
            }
        }

        sim_bs=-1;
        sim_entry=close;
    }
}
else {
    if ((signal>0) and (sim_bs<=0)) {
        if (sim_bs<0) {
            sim_last_trade = sim_entry-close;
            if (sim_last_trade>0) {
                if (sim_streak<0) sim_streak=1;
                else sim_streak+=1;
            }
            if (sim_last_trade<0) {
                if (sim_streak>0) sim_streak=-1;
                else sim_streak-=1;
            }
        }

        sim_bs=0;
    }
    if ((signal<0) and (sim_bs>=0)) {

        if (sim_bs>0) {
            sim_last_trade = close-sim_entry;
            if (sim_last_trade>0) {
                if (sim_streak<0) sim_streak=1;
                else sim_streak+=1;
            }
            if (sim_last_trade<0) {
                if (sim_streak>0) sim_streak=-1;
                else sim_streak-=1;
            }
        }

        sim_bs=0;
    }
}

#this is how v6 did it (uncomment to turn it on, and comment out the v7 stuff)
#if (equity_curve_filter==true) {
#    if (sim_streak<=1) sim_filter=true;
#    else sim_filter=false;
#}
#else sim_filter=true;

#this is the new v7 way of managing the equity curve
if (equity_curve_filter==true)
{
    if (sim_streak<-1) cts=3;  # 3 units if streak is at -2 or worse
    else if (sim_streak>1) cts=1; # 1 unit if streak is at +2 or better
    else cts=2; # 2 units if sterak is at
}


#actually place trades -----------------------------------------------------

if ((ok_to_trade==true) and (sim_filter==true)) {
    if ((signal>0) and (bs<=0)) {
        buy(cts,close,"market","onebar");
        bs=1;
    }
    if ((signal<0) and (bs>=0)) {
        sell(cts,close,"market","onebar");
        bs=-1;
    }
}
else {
    if ((bs>0) and (signal<0)) {
        exitlong(0,close,"market","onebar");
        bs=0;
    }
    if ((bs<0) and (signal>0)) {
        exitshort(0,close,"market","onebar");
        bs=0;
    }
}

#end of day exit
if (time==endtime) {
    exitlong(0,close,"market","onebar");
    exitshort(0,close,"market","onebar");
    bs=0;
}



orionsbelt
Posts: 33
Joined: Tue Jul 21, 2015 9:19 pm
Contact:

Re: Systems Workshop: "Buttonwood" E-mini daytrading system

Post by orionsbelt » Mon Dec 28, 2015 4:06 am

here are the v5 original buttonwood SMA and reverse channel breakout EMA results

Code: Select all

Parameters,Profit/Loss,Accuracy,Num. Trades,Avg. Win,Avg. Loss,Avg. Trade,Win/Loss Ratio,Profit Factor,Max. Drawdown,Max. DD %
#1#=5#2#=32#3#=100,$63425.00,41.57%,1400,$407.41,($212.33),$45.30,1.9,1.4,($5475.00),-20.31%
#1#=5#2#=32#3#=105,$62500.00,41.86%,1388,$407.12,($215.66),$45.03,1.9,1.4,($6875.00),-25.50%
#1#=5#2#=32#3#=110,$62450.00,42.36%,1367,$406.11,($219.15),$45.68,1.9,1.4,($7312.50),-27.12%
#1#=5#2#=32#3#=115,$64612.50,42.61%,1354,$408.25,($220.01),$47.72,1.9,1.4,($6562.50),-24.44%
#1#=5#2#=32#3#=120,$63262.50,42.34%,1351,$409.72,($219.64),$46.83,1.9,1.4,($5925.00),-22.33%
#1#=5#2#=32#3#=125,$62025.00,42.41%,1344,$410.64,($222.27),$46.15,1.8,1.4,($6662.50),-25.13%
#1#=5#2#=32#3#=130,$62037.50,42.62%,1335,$411.27,($224.51),$46.47,1.8,1.4,($6275.00),-23.67%
#1#=5#2#=32#3#=135,$58937.50,42.39%,1328,$413.21,($227.06),$44.38,1.8,1.3,($6337.50),-24.79%
#1#=5#2#=32#3#=140,$58475.00,42.88%,1313,$411.97,($231.28),$44.54,1.8,1.3,($6300.00),-24.95%
#1#=5#2#=32#3#=145,$56312.50,42.72%,1311,$413.13,($233.07),$42.95,1.8,1.3,($7050.00),-27.92%
#1#=5#2#=32#3#=150,$55675.00,42.90%,1303,$413.10,($235.55),$42.73,1.8,1.3,($6750.00),-26.87%
#1#=5#2#=36#3#=100,$65937.50,42.38%,1378,$405.95,($215.54),$47.85,1.9,1.4,($5150.00),-17.66%
#1#=5#2#=36#3#=105,$65212.50,42.60%,1364,$406.58,($218.41),$47.81,1.9,1.4,($5875.00),-21.79%
#1#=5#2#=36#3#=110,$64775.00,43.04%,1343,$406.10,($222.16),$48.23,1.8,1.4,($6437.50),-23.88%
#1#=5#2#=36#3#=115,$66812.50,43.32%,1332,$407.65,($223.05),$50.16,1.8,1.4,($5762.50),-21.46%
#1#=5#2#=36#3#=120,$65425.00,43.00%,1328,$409.61,($222.54),$49.27,1.8,1.4,($5175.00),-19.50%
#1#=5#2#=36#3#=125,$63962.50,43.07%,1321,$410.24,($225.35),$48.42,1.8,1.4,($5612.50),-21.17%
#1#=5#2#=36#3#=130,$63825.00,43.19%,1315,$410.72,($226.86),$48.54,1.8,1.4,($5625.00),-21.46%
#1#=5#2#=36#3#=135,$60562.50,42.85%,1307,$413.64,($229.02),$46.34,1.8,1.4,($5625.00),-22.03%
#1#=5#2#=36#3#=140,$59575.00,43.25%,1297,$411.88,($233.00),$45.93,1.8,1.3,($5912.50),-23.44%
#1#=5#2#=36#3#=145,$57375.00,43.01%,1295,$413.67,($234.47),$44.31,1.8,1.3,($6200.00),-24.58%
#1#=5#2#=36#3#=150,$56700.00,43.23%,1286,$413.92,($237.59),$44.09,1.7,1.3,($6000.00),-23.90%
#1#=5#2#=40#3#=100,$68687.50,42.91%,1361,$406.38,($217.04),$50.47,1.9,1.4,($5800.00),-12.63%
#1#=5#2#=40#3#=105,$67887.50,43.18%,1348,$406.44,($220.19),$50.36,1.8,1.4,($5837.50),-17.22%
#1#=5#2#=40#3#=110,$67612.50,43.53%,1330,$405.98,($222.97),$50.84,1.8,1.4,($5787.50),-19.33%
#1#=5#2#=40#3#=115,$68900.00,43.67%,1319,$408.68,($224.09),$52.24,1.8,1.4,($5625.00),-18.69%
#1#=5#2#=40#3#=120,$68225.00,43.54%,1309,$410.79,($224.53),$52.12,1.8,1.4,($5375.00),-19.38%
#1#=5#2#=40#3#=125,$66862.50,43.66%,1301,$411.36,($227.54),$51.39,1.8,1.4,($5537.50),-19.85%
#1#=5#2#=40#3#=130,$65700.00,43.68%,1298,$411.88,($229.60),$50.62,1.8,1.4,($5662.50),-21.60%
#1#=5#2#=40#3#=135,$61325.00,43.26%,1290,$414.78,($232.41),$47.54,1.8,1.4,($5962.50),-22.12%
#1#=5#2#=40#3#=140,$60175.00,43.76%,1282,$411.34,($236.60),$46.94,1.7,1.4,($6050.00),-23.54%
#1#=5#2#=40#3#=145,$58500.00,43.59%,1280,$412.95,($238.12),$45.70,1.7,1.3,($6250.00),-24.58%
#1#=5#2#=40#3#=150,$58050.00,43.79%,1272,$413.08,($240.61),$45.64,1.7,1.3,($6162.50),-24.55%
#1#=5#2#=44#3#=100,$70212.50,43.89%,1351,$400.06,($220.35),$51.97,1.8,1.4,($6325.00),-12.34%
#1#=5#2#=44#3#=105,$70487.50,44.13%,1337,$401.42,($222.69),$52.72,1.8,1.4,($6337.50),-13.09%
#1#=5#2#=44#3#=110,$70075.00,44.54%,1318,$400.38,($225.65),$53.17,1.8,1.4,($6350.00),-14.27%
#1#=5#2#=44#3#=115,$71250.00,44.56%,1306,$404.06,($226.40),$54.56,1.8,1.4,($6187.50),-16.29%
#1#=5#2#=44#3#=120,$70175.00,44.41%,1297,$405.92,($226.96),$54.11,1.8,1.4,($5862.50),-17.06%
#1#=5#2#=44#3#=125,$69187.50,44.46%,1291,$406.51,($228.94),$53.59,1.8,1.4,($6050.00),-17.54%
#1#=5#2#=44#3#=130,$67887.50,44.57%,1288,$406.36,($231.60),$52.71,1.8,1.4,($6225.00),-19.26%
#1#=5#2#=44#3#=135,$62862.50,43.93%,1284,$409.93,($233.80),$48.96,1.8,1.4,($6562.50),-19.73%
#1#=5#2#=44#3#=140,$61537.50,44.44%,1276,$406.64,($238.40),$48.23,1.7,1.4,($6637.50),-21.12%
#1#=5#2#=44#3#=145,$60237.50,44.27%,1274,$408.38,($239.56),$47.28,1.7,1.4,($6962.50),-22.17%
#1#=5#2#=44#3#=150,$59587.50,44.32%,1268,$409.03,($241.20),$46.99,1.7,1.3,($6525.00),-22.13%
#1#=5#2#=48#3#=100,$67537.50,43.40%,1357,$402.84,($221.01),$49.77,1.8,1.4,($6612.50),-12.19%
#1#=5#2#=48#3#=105,$67662.50,43.63%,1343,$403.90,($223.28),$50.38,1.8,1.4,($6625.00),-12.82%
#1#=5#2#=48#3#=110,$67537.50,44.07%,1323,$402.89,($226.15),$51.05,1.8,1.4,($6637.50),-12.82%
#1#=5#2#=48#3#=115,$68312.50,44.23%,1309,$405.83,($228.30),$52.19,1.8,1.4,($6475.00),-14.07%
#1#=5#2#=48#3#=120,$67100.00,44.03%,1299,$408.39,($229.02),$51.66,1.8,1.4,($6312.50),-14.83%
#1#=5#2#=48#3#=125,$65937.50,44.05%,1294,$408.49,($230.52),$50.96,1.8,1.4,($6500.00),-15.17%
#1#=5#2#=48#3#=130,$65312.50,44.19%,1290,$408.51,($232.69),$50.63,1.8,1.4,($6575.00),-16.69%
#1#=5#2#=48#3#=135,$59912.50,43.48%,1288,$412.12,($234.72),$46.52,1.8,1.4,($6912.50),-17.33%
#1#=5#2#=48#3#=140,$59125.00,44.05%,1278,$408.86,($239.25),$46.26,1.7,1.3,($6987.50),-18.69%
#1#=5#2#=48#3#=145,$58025.00,44.18%,1272,$409.14,($242.13),$45.62,1.7,1.3,($7312.50),-19.74%
#1#=5#2#=48#3#=150,$57625.00,44.28%,1267,$409.20,($243.54),$45.48,1.7,1.3,($6925.00),-19.49%
#1#=5#2#=52#3#=100,$67550.00,43.64%,1352,$403.01,($223.39),$49.96,1.8,1.4,($6937.50),-12.98%
#1#=5#2#=52#3#=105,$67412.50,43.66%,1340,$405.32,($224.77),$50.31,1.8,1.4,($7050.00),-13.38%
#1#=5#2#=52#3#=110,$67400.00,44.17%,1320,$403.07,($227.39),$51.06,1.8,1.4,($7087.50),-13.38%
#1#=5#2#=52#3#=115,$68025.00,44.36%,1303,$405.71,($229.62),$52.21,1.8,1.4,($6887.50),-14.64%
#1#=5#2#=52#3#=120,$66887.50,44.16%,1293,$408.32,($230.28),$51.73,1.8,1.4,($6725.00),-15.40%
#1#=5#2#=52#3#=125,$65987.50,44.25%,1288,$407.89,($231.91),$51.23,1.8,1.4,($6912.50),-15.55%
#1#=5#2#=52#3#=130,$65800.00,44.53%,1280,$407.89,($234.79),$51.41,1.7,1.4,($6987.50),-17.07%
#1#=5#2#=52#3#=135,$61325.00,43.97%,1276,$410.98,($236.70),$48.06,1.7,1.4,($7325.00),-17.73%
#1#=5#2#=52#3#=140,$60187.50,44.55%,1266,$407.69,($241.81),$47.54,1.7,1.4,($7412.50),-19.09%
#1#=5#2#=52#3#=145,$58950.00,44.68%,1260,$407.88,($244.89),$46.79,1.7,1.3,($7687.50),-20.14%
#1#=5#2#=52#3#=150,$58625.00,44.85%,1253,$407.87,($246.89),$46.79,1.7,1.3,($7425.00),-19.99%
#1#=8#2#=32#3#=100,$65112.50,43.01%,1351,$404.63,($220.75),$48.20,1.8,1.4,($5837.50),-17.48%
#1#=8#2#=32#3#=105,$64275.00,43.16%,1337,$405.44,($223.24),$48.07,1.8,1.4,($5825.00),-21.57%
#1#=8#2#=32#3#=110,$64275.00,43.37%,1319,$406.18,($224.98),$48.73,1.8,1.4,($5787.50),-22.00%
#1#=8#2#=32#3#=115,$66712.50,43.42%,1306,$410.16,($224.42),$51.08,1.8,1.4,($5600.00),-19.99%
#1#=8#2#=32#3#=120,$65787.50,43.01%,1302,$412.77,($222.86),$50.53,1.9,1.4,($5300.00),-18.15%
#1#=8#2#=32#3#=125,$64175.00,43.10%,1297,$413.22,($226.03),$49.48,1.8,1.4,($5487.50),-20.11%
#1#=8#2#=32#3#=130,$64500.00,43.44%,1289,$412.21,($228.17),$50.04,1.8,1.4,($5725.00),-18.65%
#1#=8#2#=32#3#=135,$61275.00,43.14%,1282,$414.62,($230.47),$47.80,1.8,1.4,($6012.50),-19.51%
#1#=8#2#=32#3#=140,$61612.50,43.94%,1270,$410.73,($235.36),$48.51,1.7,1.4,($5937.50),-20.46%
#1#=8#2#=32#3#=145,$59450.00,43.70%,1270,$411.96,($236.63),$46.81,1.7,1.4,($6212.50),-22.97%
#1#=8#2#=32#3#=150,$58187.50,43.71%,1263,$412.86,($238.70),$46.07,1.7,1.3,($5712.50),-22.88%
#1#=8#2#=36#3#=100,$64750.00,43.57%,1338,$402.23,($224.83),$48.39,1.8,1.4,($5575.00),-17.39%
#1#=8#2#=36#3#=105,$63812.50,43.74%,1326,$402.59,($227.46),$48.12,1.8,1.4,($5662.50),-21.47%
#1#=8#2#=36#3#=110,$63775.00,43.97%,1310,$402.89,($229.27),$48.68,1.8,1.4,($5787.50),-22.00%
#1#=8#2#=36#3#=115,$65950.00,43.91%,1298,$407.48,($228.45),$50.81,1.8,1.4,($5575.00),-21.28%
#1#=8#2#=36#3#=120,$65912.50,43.62%,1293,$409.84,($226.66),$50.98,1.8,1.4,($5062.50),-19.16%
#1#=8#2#=36#3#=125,$64487.50,43.68%,1289,$410.35,($229.39),$50.03,1.8,1.4,($5475.00),-20.98%
#1#=8#2#=36#3#=130,$64262.50,43.92%,1282,$409.81,($231.52),$50.13,1.8,1.4,($5412.50),-20.65%
#1#=8#2#=36#3#=135,$60475.00,43.46%,1277,$412.50,($233.33),$47.36,1.8,1.4,($5737.50),-21.59%
#1#=8#2#=36#3#=140,$60400.00,44.20%,1267,$408.39,($238.05),$47.67,1.7,1.4,($5662.50),-22.57%
#1#=8#2#=36#3#=145,$57650.00,43.80%,1267,$410.72,($239.19),$45.50,1.7,1.3,($6250.00),-25.08%
#1#=8#2#=36#3#=150,$56000.00,43.74%,1262,$411.89,($241.36),$44.37,1.7,1.3,($6200.00),-25.00%
#1#=8#2#=40#3#=100,$66225.00,44.44%,1321,$397.53,($227.69),$50.13,1.7,1.4,($5612.50),-12.49%
#1#=8#2#=40#3#=105,$66087.50,44.46%,1309,$399.94,($229.26),$50.49,1.7,1.4,($5725.00),-12.78%
#1#=8#2#=40#3#=110,$65800.00,44.63%,1295,$400.24,($230.88),$50.81,1.7,1.4,($5562.50),-15.53%
#1#=8#2#=40#3#=115,$67962.50,44.71%,1277,$405.01,($231.30),$53.22,1.8,1.4,($5400.00),-15.68%
#1#=8#2#=40#3#=120,$67312.50,44.51%,1267,$408.24,($231.77),$53.13,1.8,1.4,($5237.50),-16.46%
#1#=8#2#=40#3#=125,$66187.50,44.73%,1261,$407.91,($235.11),$52.49,1.7,1.4,($5425.00),-16.65%
#1#=8#2#=40#3#=130,$65362.50,44.82%,1256,$407.75,($236.94),$52.04,1.7,1.4,($5587.50),-18.19%
#1#=8#2#=40#3#=135,$60412.50,44.22%,1255,$410.29,($239.00),$48.14,1.7,1.4,($5925.00),-18.90%
#1#=8#2#=40#3#=140,$59750.00,44.83%,1247,$406.53,($243.46),$47.91,1.7,1.4,($5837.50),-19.85%
#1#=8#2#=40#3#=145,$57562.50,44.59%,1247,$407.98,($244.97),$46.16,1.7,1.3,($6312.50),-20.91%
#1#=8#2#=40#3#=150,$56975.00,44.61%,1242,$408.84,($246.40),$45.87,1.7,1.3,($6187.50),-21.32%
#1#=8#2#=44#3#=100,$67937.50,44.58%,1319,$399.43,($228.35),$51.51,1.7,1.4,($6687.50),-12.66%
#1#=8#2#=44#3#=105,$68400.00,44.74%,1303,$401.80,($230.35),$52.49,1.7,1.4,($6400.00),-12.94%
#1#=8#2#=44#3#=110,$67200.00,44.96%,1290,$400.63,($232.62),$52.09,1.7,1.4,($6412.50),-15.03%
#1#=8#2#=44#3#=115,$68212.50,44.95%,1277,$404.22,($233.02),$53.42,1.7,1.4,($6237.50),-16.76%
#1#=8#2#=44#3#=120,$67287.50,44.60%,1269,$408.11,($232.86),$53.02,1.8,1.4,($6075.00),-17.53%
#1#=8#2#=44#3#=125,$66662.50,44.89%,1261,$407.88,($236.26),$52.86,1.7,1.4,($6262.50),-17.53%
#1#=8#2#=44#3#=130,$66412.50,45.14%,1256,$406.61,($238.23),$52.88,1.7,1.4,($6325.00),-19.04%
#1#=8#2#=44#3#=135,$61375.00,44.54%,1255,$408.97,($240.28),$48.90,1.7,1.4,($6775.00),-19.77%
#1#=8#2#=44#3#=140,$60450.00,45.15%,1247,$405.24,($245.18),$48.48,1.7,1.4,($6750.00),-20.70%
#1#=8#2#=44#3#=145,$58787.50,44.97%,1243,$407.60,($247.17),$47.29,1.6,1.3,($7075.00),-21.74%
#1#=8#2#=44#3#=150,$58450.00,44.98%,1236,$408.84,($248.33),$47.29,1.6,1.3,($6625.00),-21.95%
#1#=8#2#=48#3#=100,$68137.50,44.67%,1305,$399.42,($228.15),$52.21,1.8,1.4,($6387.50),-12.03%
#1#=8#2#=48#3#=105,$69400.00,45.16%,1291,$399.10,($230.61),$53.76,1.7,1.4,($6500.00),-12.01%
#1#=8#2#=48#3#=110,$68862.50,45.49%,1275,$398.19,($233.22),$54.01,1.7,1.4,($6512.50),-12.06%
#1#=8#2#=48#3#=115,$69700.00,45.60%,1261,$400.76,($234.31),$55.27,1.7,1.4,($6350.00),-13.91%
#1#=8#2#=48#3#=120,$69037.50,45.28%,1250,$405.26,($234.41),$55.23,1.7,1.4,($6212.50),-14.67%
#1#=8#2#=48#3#=125,$68125.00,45.38%,1245,$404.96,($236.29),$54.72,1.7,1.4,($6400.00),-14.67%
#1#=8#2#=48#3#=130,$68337.50,45.68%,1239,$404.17,($238.37),$55.16,1.7,1.4,($6462.50),-15.90%
#1#=8#2#=48#3#=135,$63275.00,45.15%,1238,$406.13,($241.16),$51.11,1.7,1.4,($6812.50),-16.51%
#1#=8#2#=48#3#=140,$63212.50,45.84%,1226,$403.43,($246.25),$51.56,1.6,1.4,($6850.00),-17.41%
#1#=8#2#=48#3#=145,$61637.50,45.74%,1222,$405.12,($248.60),$50.44,1.6,1.4,($6900.00),-18.45%
#1#=8#2#=48#3#=150,$61425.00,45.89%,1216,$405.04,($250.13),$50.51,1.6,1.4,($6775.00),-18.54%
#1#=8#2#=52#3#=100,$66925.00,44.80%,1297,$402.62,($233.24),$51.60,1.7,1.4,($6887.50),-12.93%
#1#=8#2#=52#3#=105,$67687.50,45.18%,1286,$402.73,($235.89),$52.63,1.7,1.4,($7000.00),-12.94%
#1#=8#2#=52#3#=110,$66900.00,45.67%,1270,$400.28,($239.51),$52.68,1.7,1.4,($7012.50),-12.98%
#1#=8#2#=52#3#=115,$67987.50,45.82%,1255,$402.89,($240.70),$54.17,1.7,1.4,($6812.50),-14.80%
#1#=8#2#=52#3#=120,$66775.00,45.66%,1244,$405.94,($242.31),$53.68,1.7,1.4,($6487.50),-15.56%
#1#=8#2#=52#3#=125,$65887.50,45.76%,1239,$405.56,($244.14),$53.18,1.7,1.4,($6675.00),-15.89%
#1#=8#2#=52#3#=130,$67012.50,46.10%,1232,$404.86,($245.41),$54.39,1.6,1.4,($6737.50),-17.11%
#1#=8#2#=52#3#=135,$63212.50,45.88%,1227,$405.79,($248.87),$51.52,1.6,1.4,($7087.50),-17.76%
#1#=8#2#=52#3#=140,$63937.50,46.59%,1217,$402.62,($252.85),$52.54,1.6,1.4,($7125.00),-18.67%
#1#=8#2#=52#3#=145,$62050.00,46.58%,1213,$403.50,($256.06),$51.15,1.6,1.4,($7125.00),-19.70%
#1#=8#2#=52#3#=150,$61625.00,46.73%,1207,$403.15,($257.78),$51.06,1.6,1.4,($7000.00),-20.04%
#1#=11#2#=32#3#=100,$60662.50,43.80%,1322,$398.01,($228.52),$45.89,1.7,1.4,($5950.00),-16.57%
#1#=11#2#=32#3#=105,$59900.00,43.98%,1312,$397.79,($230.78),$45.66,1.7,1.4,($5837.50),-20.82%
#1#=11#2#=32#3#=110,$60412.50,44.02%,1295,$400.31,($231.40),$46.65,1.7,1.4,($6262.50),-23.65%
#1#=11#2#=32#3#=115,$63137.50,44.51%,1276,$401.43,($232.87),$49.48,1.7,1.4,($5875.00),-22.29%
#1#=11#2#=32#3#=120,$62150.00,43.99%,1273,$404.82,($230.79),$48.82,1.8,1.4,($5250.00),-19.99%
#1#=11#2#=32#3#=125,$61587.50,44.11%,1265,$406.50,($233.72),$48.69,1.7,1.4,($5725.00),-21.80%
#1#=11#2#=32#3#=130,$61287.50,44.36%,1258,$406.27,($236.30),$48.72,1.7,1.4,($5650.00),-21.52%
#1#=11#2#=32#3#=135,$57562.50,44.05%,1253,$407.59,($238.84),$45.94,1.7,1.3,($5825.00),-22.35%
#1#=11#2#=32#3#=140,$58200.00,44.72%,1241,$405.07,($242.88),$46.90,1.7,1.3,($5825.00),-23.34%
#1#=11#2#=32#3#=145,$54562.50,44.49%,1243,$405.31,($245.76),$43.90,1.6,1.3,($6512.50),-26.09%
#1#=11#2#=32#3#=150,$52975.00,44.47%,1239,$405.13,($247.46),$42.76,1.6,1.3,($6487.50),-26.05%
#1#=11#2#=36#3#=100,$66550.00,44.81%,1301,$397.02,($229.68),$51.15,1.7,1.4,($5987.50),-15.20%
#1#=11#2#=36#3#=105,$65375.00,44.85%,1291,$397.97,($231.81),$50.64,1.7,1.4,($6100.00),-17.33%
#1#=11#2#=36#3#=110,$65550.00,44.75%,1276,$401.09,($231.88),$51.37,1.7,1.4,($5937.50),-20.25%
#1#=11#2#=36#3#=115,$66887.50,44.92%,1260,$403.64,($232.82),$53.09,1.7,1.4,($5925.00),-22.48%
#1#=11#2#=36#3#=120,$66775.00,44.77%,1253,$405.97,($232.62),$53.29,1.7,1.4,($5525.00),-20.61%
#1#=11#2#=36#3#=125,$66012.50,45.06%,1245,$406.17,($236.62),$53.02,1.7,1.4,($5700.00),-21.18%
#1#=11#2#=36#3#=130,$63962.50,45.18%,1244,$404.94,($239.90),$51.42,1.7,1.4,($5850.00),-22.29%
#1#=11#2#=36#3#=135,$59137.50,44.80%,1241,$405.94,($243.16),$47.65,1.7,1.4,($6125.00),-23.39%
#1#=11#2#=36#3#=140,$58800.00,45.26%,1233,$403.65,($246.57),$47.69,1.6,1.4,($6087.50),-24.39%
#1#=11#2#=36#3#=145,$55950.00,45.18%,1235,$403.11,($249.61),$45.30,1.6,1.3,($6887.50),-27.59%
#1#=11#2#=36#3#=150,$55000.00,45.09%,1231,$403.51,($249.93),$44.68,1.6,1.3,($6862.50),-27.56%
#1#=11#2#=40#3#=100,$70187.50,45.62%,1280,$395.21,($230.77),$54.83,1.7,1.4,($6250.00),-15.12%
#1#=11#2#=40#3#=105,$69487.50,45.83%,1270,$395.64,($233.68),$54.71,1.7,1.4,($6362.50),-15.41%
#1#=11#2#=40#3#=110,$68900.00,45.74%,1257,$398.11,($234.62),$54.81,1.7,1.4,($6375.00),-15.41%
#1#=11#2#=40#3#=115,$69812.50,45.93%,1241,$400.90,($236.51),$56.26,1.7,1.4,($6250.00),-16.61%
#1#=11#2#=40#3#=120,$68662.50,45.71%,1234,$403.10,($236.85),$55.64,1.7,1.4,($5612.50),-17.39%
#1#=11#2#=40#3#=125,$67737.50,45.80%,1227,$404.27,($239.79),$55.21,1.7,1.4,($5775.00),-17.39%
#1#=11#2#=40#3#=130,$66525.00,46.00%,1224,$402.95,($242.57),$54.35,1.7,1.4,($5862.50),-18.64%
#1#=11#2#=40#3#=135,$61587.50,45.66%,1222,$403.36,($246.22),$50.40,1.6,1.4,($6212.50),-19.36%
#1#=11#2#=40#3#=140,$61137.50,46.05%,1216,$401.34,($249.41),$50.28,1.6,1.4,($6062.50),-20.30%
#1#=11#2#=40#3#=145,$59475.00,46.20%,1212,$400.74,($252.97),$49.07,1.6,1.4,($6137.50),-21.35%
#1#=11#2#=40#3#=150,$59087.50,46.11%,1208,$402.24,($253.40),$48.91,1.6,1.4,($6012.50),-21.81%
#1#=11#2#=44#3#=100,$70162.50,45.91%,1272,$395.55,($233.78),$55.16,1.7,1.4,($6412.50),-11.78%
#1#=11#2#=44#3#=105,$70225.00,46.27%,1260,$395.24,($236.63),$55.73,1.7,1.4,($6437.50),-12.07%
#1#=11#2#=44#3#=110,$68650.00,46.23%,1248,$396.32,($238.49),$55.01,1.7,1.4,($6450.00),-12.07%
#1#=11#2#=44#3#=115,$69725.00,46.51%,1232,$398.63,($240.80),$56.59,1.7,1.4,($6275.00),-12.61%
#1#=11#2#=44#3#=120,$69037.50,46.40%,1222,$401.10,($241.81),$56.50,1.7,1.4,($5625.00),-13.37%
#1#=11#2#=44#3#=125,$68812.50,46.46%,1216,$402.21,($243.38),$56.59,1.7,1.4,($5737.50),-13.37%
#1#=11#2#=44#3#=130,$69437.50,46.78%,1210,$401.81,($245.32),$57.39,1.6,1.4,($5800.00),-14.61%
#1#=11#2#=44#3#=135,$63687.50,46.28%,1210,$402.72,($248.98),$52.63,1.6,1.4,($6425.00),-15.17%
#1#=11#2#=44#3#=140,$63425.00,46.67%,1202,$401.00,($252.01),$52.77,1.6,1.4,($6012.50),-17.06%
#1#=11#2#=44#3#=145,$61550.00,46.83%,1198,$400.45,($256.04),$51.38,1.6,1.4,($6012.50),-18.20%
#1#=11#2#=44#3#=150,$60600.00,46.57%,1194,$403.26,($256.45),$50.75,1.6,1.4,($5887.50),-19.95%
#1#=11#2#=48#3#=100,$69587.50,46.17%,1267,$396.67,($238.21),$54.92,1.7,1.4,($6550.00),-12.00%
#1#=11#2#=48#3#=105,$69987.50,46.78%,1257,$394.81,($242.40),$55.68,1.6,1.4,($6662.50),-11.83%
#1#=11#2#=48#3#=110,$68162.50,46.63%,1248,$395.23,($243.04),$54.62,1.6,1.4,($6675.00),-13.30%
#1#=11#2#=48#3#=115,$68500.00,46.72%,1235,$397.64,($244.59),$55.47,1.6,1.4,($6475.00),-14.64%
#1#=11#2#=48#3#=120,$68450.00,46.73%,1224,$399.72,($245.69),$55.92,1.6,1.4,($5800.00),-15.41%
#1#=11#2#=48#3#=125,$68312.50,46.84%,1219,$400.26,($247.28),$56.04,1.6,1.4,($5912.50),-15.60%
#1#=11#2#=48#3#=130,$68800.00,47.28%,1214,$398.50,($249.90),$56.67,1.6,1.4,($5975.00),-16.84%
#1#=11#2#=48#3#=135,$64462.50,46.99%,1211,$399.03,($253.25),$53.23,1.6,1.4,($6437.50),-17.49%
#1#=11#2#=48#3#=140,$63425.00,47.25%,1202,$397.84,($256.39),$52.77,1.6,1.4,($6250.00),-19.40%
#1#=11#2#=48#3#=145,$61337.50,47.08%,1200,$399.31,($258.70),$51.11,1.5,1.4,($6275.00),-20.20%
#1#=11#2#=48#3#=150,$60300.00,46.99%,1196,$400.44,($259.86),$50.42,1.5,1.4,($6150.00),-21.65%
#1#=11#2#=52#3#=100,$66425.00,45.73%,1266,$397.47,($238.30),$52.47,1.7,1.4,($7150.00),-13.15%
#1#=11#2#=52#3#=105,$66912.50,46.18%,1256,$397.05,($241.68),$53.27,1.6,1.4,($7262.50),-13.04%
#1#=11#2#=52#3#=110,$66112.50,46.10%,1243,$398.52,($242.15),$53.19,1.6,1.4,($7275.00),-13.18%
#1#=11#2#=52#3#=115,$66887.50,46.22%,1229,$401.36,($243.70),$54.42,1.6,1.4,($7075.00),-12.58%
#1#=11#2#=52#3#=120,$66462.50,46.15%,1220,$403.51,($244.62),$54.48,1.6,1.4,($6175.00),-13.34%
#1#=11#2#=52#3#=125,$66112.50,46.29%,1214,$404.00,($246.84),$54.46,1.6,1.4,($6287.50),-13.62%
#1#=11#2#=52#3#=130,$66700.00,46.77%,1208,$402.01,($249.51),$55.22,1.6,1.4,($6350.00),-14.85%
#1#=11#2#=52#3#=135,$63737.50,46.63%,1201,$403.10,($252.73),$53.07,1.6,1.4,($6750.00),-15.42%
#1#=11#2#=52#3#=140,$63275.00,46.82%,1194,$402.37,($254.57),$52.99,1.6,1.4,($6625.00),-17.29%
#1#=11#2#=52#3#=145,$60925.00,46.82%,1194,$401.83,($257.80),$51.03,1.6,1.4,($6625.00),-18.09%
#1#=11#2#=52#3#=150,$59575.00,46.85%,1191,$401.57,($259.87),$50.02,1.5,1.4,($6500.00),-20.47%
#1#=14#2#=32#3#=100,$62000.00,44.19%,1299,$399.39,($230.69),$47.73,1.7,1.4,($7562.50),-16.87%
#1#=14#2#=32#3#=105,$60875.00,44.34%,1290,$399.50,($233.48),$47.19,1.7,1.4,($7287.50),-21.08%
#1#=14#2#=32#3#=110,$60837.50,44.35%,1274,$402.04,($234.57),$47.75,1.7,1.4,($7125.00),-22.12%
#1#=14#2#=32#3#=115,$63787.50,44.46%,1255,$407.15,($234.43),$50.83,1.7,1.4,($7125.00),-24.44%
#1#=14#2#=32#3#=120,$63225.00,44.36%,1251,$407.68,($234.25),$50.54,1.7,1.4,($6562.50),-22.15%
#1#=14#2#=32#3#=125,$63612.50,44.65%,1243,$408.13,($236.77),$51.18,1.7,1.4,($6637.50),-23.01%
#1#=14#2#=32#3#=130,$62750.00,44.79%,1239,$408.27,($239.53),$50.65,1.7,1.4,($6525.00),-23.31%
#1#=14#2#=32#3#=135,$58800.00,44.58%,1236,$408.26,($242.55),$47.57,1.7,1.4,($7162.50),-24.46%
#1#=14#2#=32#3#=140,$58537.50,45.12%,1230,$404.75,($246.07),$47.59,1.6,1.4,($6387.50),-25.46%
#1#=14#2#=32#3#=145,$55300.00,44.88%,1230,$405.82,($248.84),$44.96,1.6,1.3,($6937.50),-27.82%
#1#=14#2#=32#3#=150,$55425.00,45.02%,1224,$405.47,($249.61),$45.28,1.6,1.3,($6962.50),-27.99%
#1#=14#2#=36#3#=100,$67425.00,45.21%,1274,$397.87,($231.73),$52.92,1.7,1.4,($6137.50),-12.55%
#1#=14#2#=36#3#=105,$67900.00,45.56%,1262,$397.37,($233.75),$53.80,1.7,1.4,($6100.00),-13.83%
#1#=14#2#=36#3#=110,$65975.00,45.37%,1252,$399.30,($235.12),$52.70,1.7,1.4,($6112.50),-14.87%
#1#=14#2#=36#3#=115,$67275.00,45.46%,1234,$403.30,($236.22),$54.52,1.7,1.4,($5987.50),-17.36%
#1#=14#2#=36#3#=120,$67037.50,45.40%,1229,$404.14,($236.18),$54.55,1.7,1.4,($5375.00),-16.18%
#1#=14#2#=36#3#=125,$66650.00,45.50%,1222,$405.51,($238.46),$54.54,1.7,1.4,($5537.50),-17.09%
#1#=14#2#=36#3#=130,$65000.00,45.66%,1220,$404.44,($241.74),$53.28,1.7,1.4,($5625.00),-17.62%
#1#=14#2#=36#3#=135,$60587.50,45.36%,1217,$404.89,($244.98),$49.78,1.7,1.4,($6050.00),-18.50%
#1#=14#2#=36#3#=140,$60687.50,45.82%,1209,$403.11,($248.30),$50.20,1.6,1.4,($5850.00),-19.44%
#1#=14#2#=36#3#=145,$59175.00,45.93%,1204,$403.23,($251.63),$49.15,1.6,1.4,($5875.00),-20.69%
#1#=14#2#=36#3#=150,$58425.00,45.75%,1200,$405.01,($251.80),$48.69,1.6,1.4,($5750.00),-20.85%
#1#=14#2#=40#3#=100,$72300.00,46.02%,1245,$401.79,($235.01),$58.07,1.7,1.5,($6812.50),-12.46%
#1#=14#2#=40#3#=105,$71962.50,46.35%,1234,$401.55,($238.26),$58.32,1.7,1.5,($6450.00),-11.60%
#1#=14#2#=40#3#=110,$69900.00,46.33%,1226,$400.77,($239.72),$57.01,1.7,1.4,($6537.50),-11.90%
#1#=14#2#=40#3#=115,$70300.00,46.41%,1213,$402.60,($240.56),$57.96,1.7,1.4,($6512.50),-11.66%
#1#=14#2#=40#3#=120,$69350.00,46.15%,1207,$404.91,($240.29),$57.46,1.7,1.4,($5887.50),-10.74%
#1#=14#2#=40#3#=125,$69187.50,46.29%,1201,$405.87,($242.60),$57.61,1.7,1.4,($6075.00),-11.15%
#1#=14#2#=40#3#=130,$68550.00,46.57%,1196,$405.27,($245.99),$57.32,1.6,1.4,($5862.50),-11.34%
#1#=14#2#=40#3#=135,$63587.50,45.99%,1196,$407.07,($248.14),$53.17,1.6,1.4,($6350.00),-12.15%
#1#=14#2#=40#3#=140,$63462.50,46.47%,1190,$404.32,($251.37),$53.33,1.6,1.4,($5987.50),-12.33%
#1#=14#2#=40#3#=145,$61950.00,46.59%,1189,$402.75,($253.82),$52.10,1.6,1.4,($6012.50),-12.33%
#1#=14#2#=40#3#=150,$62175.00,46.62%,1182,$403.86,($254.12),$52.60,1.6,1.4,($5887.50),-11.12%
#1#=14#2#=44#3#=100,$73800.00,47.24%,1230,$396.75,($241.47),$60.00,1.6,1.5,($6537.50),-14.08%
#1#=14#2#=44#3#=105,$73950.00,47.70%,1218,$397.12,($246.11),$60.71,1.6,1.5,($6537.50),-13.85%
#1#=14#2#=44#3#=110,$71537.50,47.52%,1210,$397.43,($247.22),$59.12,1.6,1.5,($6537.50),-13.97%
#1#=14#2#=44#3#=115,$70112.50,47.41%,1198,$399.93,($249.29),$58.52,1.6,1.4,($6537.50),-13.68%
#1#=14#2#=44#3#=120,$69275.00,47.23%,1190,$401.94,($249.38),$58.21,1.6,1.4,($5737.50),-11.83%
#1#=14#2#=44#3#=125,$69375.00,47.34%,1185,$402.63,($250.80),$58.54,1.6,1.4,($5900.00),-11.81%
#1#=14#2#=44#3#=130,$69150.00,47.80%,1182,$400.02,($254.23),$58.50,1.6,1.4,($5975.00),-12.62%
#1#=14#2#=44#3#=135,$65237.50,47.16%,1181,$402.18,($254.45),$55.24,1.6,1.4,($6662.50),-13.01%
#1#=14#2#=44#3#=140,$65075.00,47.53%,1176,$399.91,($256.85),$55.34,1.6,1.4,($6125.00),-12.99%
#1#=14#2#=44#3#=145,$63775.00,47.53%,1172,$400.56,($259.09),$54.42,1.5,1.4,($6125.00),-13.08%
#1#=14#2#=44#3#=150,$63087.50,47.39%,1169,$401.78,($259.35),$53.97,1.5,1.4,($6000.00),-12.74%
#1#=14#2#=48#3#=100,$71100.00,47.44%,1229,$395.65,($247.00),$57.85,1.6,1.4,($7187.50),-13.43%
#1#=14#2#=48#3#=105,$71612.50,47.95%,1218,$395.08,($250.97),$58.80,1.6,1.5,($7175.00),-13.17%
#1#=14#2#=48#3#=110,$69562.50,47.85%,1208,$395.52,($252.46),$57.58,1.6,1.4,($7187.50),-13.30%
#1#=14#2#=48#3#=115,$68425.00,48.08%,1198,$394.68,($255.49),$57.12,1.5,1.4,($7037.50),-13.03%
#1#=14#2#=48#3#=120,$67800.00,47.86%,1193,$396.61,($255.08),$56.83,1.6,1.4,($6762.50),-12.11%
#1#=14#2#=48#3#=125,$67337.50,47.90%,1188,$397.21,($256.34),$56.68,1.5,1.4,($6875.00),-12.51%
#1#=14#2#=48#3#=130,$67625.00,48.18%,1183,$396.67,($258.52),$57.16,1.5,1.4,($6937.50),-12.53%
#1#=14#2#=48#3#=135,$64075.00,47.80%,1180,$397.50,($259.92),$54.30,1.5,1.4,($7537.50),-14.09%
#1#=14#2#=48#3#=140,$62850.00,48.00%,1175,$395.77,($262.46),$53.49,1.5,1.4,($7362.50),-13.68%
#1#=14#2#=48#3#=145,$61225.00,48.00%,1173,$396.00,($265.12),$52.20,1.5,1.4,($7387.50),-13.90%
#1#=14#2#=48#3#=150,$61137.50,47.99%,1169,$396.79,($265.56),$52.30,1.5,1.4,($7262.50),-13.49%
#1#=14#2#=52#3#=100,$67175.00,47.64%,1230,$392.64,($252.97),$54.61,1.6,1.4,($7012.50),-13.55%
#1#=14#2#=52#3#=105,$67312.50,47.95%,1222,$392.51,($255.82),$55.08,1.5,1.4,($7125.00),-13.36%
#1#=14#2#=52#3#=110,$67312.50,48.10%,1212,$391.49,($255.84),$55.54,1.5,1.4,($7137.50),-12.89%
#1#=14#2#=52#3#=115,$66212.50,48.04%,1199,$393.58,($257.60),$55.22,1.5,1.4,($6937.50),-12.57%
#1#=14#2#=52#3#=120,$65187.50,47.74%,1196,$395.51,($257.04),$54.50,1.5,1.4,($6962.50),-12.58%
#1#=14#2#=52#3#=125,$64925.00,47.77%,1191,$396.42,($258.26),$54.51,1.5,1.4,($7075.00),-12.91%
#1#=14#2#=52#3#=130,$65700.00,48.14%,1182,$395.96,($260.36),$55.58,1.5,1.4,($6712.50),-12.17%
#1#=14#2#=52#3#=135,$63612.50,48.04%,1174,$396.56,($262.38),$54.18,1.5,1.4,($6925.00),-12.90%
#1#=14#2#=52#3#=140,$62875.00,48.16%,1169,$396.09,($264.23),$53.79,1.5,1.4,($7025.00),-13.12%
#1#=14#2#=52#3#=145,$61112.50,48.11%,1166,$396.48,($266.63),$52.41,1.5,1.4,($7050.00),-13.35%
#1#=14#2#=52#3#=150,$59700.00,47.94%,1164,$397.74,($267.72),$51.29,1.5,1.4,($6925.00),-13.33%
#1#=17#2#=32#3#=100,$64000.00,45.70%,1280,$391.62,($237.55),$50.00,1.6,1.4,($6175.00),-13.62%
#1#=17#2#=32#3#=105,$64362.50,45.70%,1267,$395.01,($238.88),$50.80,1.7,1.4,($6337.50),-17.42%
#1#=17#2#=32#3#=110,$62837.50,45.69%,1254,$396.10,($241.01),$50.11,1.6,1.4,($6350.00),-18.47%
#1#=17#2#=32#3#=115,$63025.00,45.62%,1243,$399.23,($241.62),$50.70,1.7,1.4,($6225.00),-20.45%
#1#=17#2#=32#3#=120,$62250.00,45.28%,1239,$401.58,($240.47),$50.24,1.7,1.4,($6162.50),-18.47%
#1#=17#2#=32#3#=125,$61862.50,45.42%,1233,$402.46,($242.96),$50.17,1.7,1.4,($6312.50),-20.33%
#1#=17#2#=32#3#=130,$61612.50,45.65%,1229,$402.30,($245.62),$50.13,1.6,1.4,($6475.00),-20.11%
#1#=17#2#=32#3#=135,$57500.00,45.39%,1225,$402.52,($248.58),$46.94,1.6,1.3,($6650.00),-22.20%
#1#=17#2#=32#3#=140,$57550.00,45.76%,1215,$401.80,($251.67),$47.37,1.6,1.3,($6425.00),-24.66%
#1#=17#2#=32#3#=145,$54387.50,45.60%,1217,$401.01,($254.04),$44.69,1.6,1.3,($6825.00),-26.11%
#1#=17#2#=32#3#=150,$54512.50,45.70%,1210,$401.60,($255.06),$45.05,1.6,1.3,($6700.00),-24.83%
#1#=17#2#=36#3#=100,$65612.50,45.77%,1252,$398.73,($239.86),$52.41,1.7,1.4,($6925.00),-15.05%
#1#=17#2#=36#3#=105,$64675.00,45.81%,1242,$399.60,($241.75),$52.07,1.7,1.4,($6587.50),-14.98%
#1#=17#2#=36#3#=110,$62775.00,45.71%,1234,$399.84,($242.89),$50.87,1.6,1.4,($6625.00),-15.18%
#1#=17#2#=36#3#=115,$63400.00,45.78%,1219,$402.84,($244.16),$52.01,1.6,1.4,($6625.00),-15.37%
#1#=17#2#=36#3#=120,$63025.00,45.55%,1214,$404.88,($243.38),$51.92,1.7,1.4,($6637.50),-13.90%
#1#=17#2#=36#3#=125,$63225.00,45.66%,1209,$406.07,($244.94),$52.30,1.7,1.4,($6850.00),-15.77%
#1#=17#2#=36#3#=130,$61850.00,45.98%,1205,$404.60,($249.31),$51.33,1.6,1.4,($6912.50),-15.92%
#1#=17#2#=36#3#=135,$57312.50,45.51%,1204,$405.68,($251.52),$47.60,1.6,1.3,($7400.00),-17.38%
#1#=17#2#=36#3#=140,$56625.00,45.82%,1196,$404.56,($254.75),$47.35,1.6,1.3,($6950.00),-19.81%
#1#=17#2#=36#3#=145,$54575.00,45.82%,1196,$404.01,($257.45),$45.63,1.6,1.3,($7175.00),-21.27%
#1#=17#2#=36#3#=150,$54625.00,45.92%,1189,$404.46,($258.50),$45.94,1.6,1.3,($7050.00),-19.96%
#1#=17#2#=40#3#=100,$66900.00,46.69%,1240,$393.96,($243.87),$53.95,1.6,1.4,($6850.00),-15.04%
#1#=17#2#=40#3#=105,$66875.00,46.87%,1229,$395.07,($246.08),$54.41,1.6,1.4,($6850.00),-14.77%
#1#=17#2#=40#3#=110,$65275.00,46.80%,1218,$395.75,($247.38),$53.59,1.6,1.4,($6850.00),-14.94%
#1#=17#2#=40#3#=115,$65625.00,46.92%,1202,$398.34,($249.28),$54.60,1.6,1.4,($6850.00),-14.49%
#1#=17#2#=40#3#=120,$64700.00,46.74%,1196,$399.78,($249.25),$54.10,1.6,1.4,($6312.50),-12.59%
#1#=17#2#=40#3#=125,$64612.50,46.77%,1191,$401.68,($250.99),$54.25,1.6,1.4,($6525.00),-12.85%
#1#=17#2#=40#3#=130,$64112.50,47.26%,1185,$400.00,($255.82),$54.10,1.6,1.4,($6287.50),-13.81%
#1#=17#2#=40#3#=135,$60212.50,46.66%,1181,$402.81,($256.73),$50.98,1.6,1.4,($6912.50),-14.20%
#1#=17#2#=40#3#=140,$59787.50,46.94%,1176,$401.63,($259.48),$50.84,1.5,1.4,($6287.50),-14.25%
#1#=17#2#=40#3#=145,$58787.50,47.23%,1173,$399.82,($262.86),$50.12,1.5,1.4,($6287.50),-14.40%
#1#=17#2#=40#3#=150,$57737.50,47.18%,1170,$400.72,($264.50),$49.35,1.5,1.4,($6287.50),-14.42%
#1#=17#2#=44#3#=100,$70037.50,47.71%,1222,$391.14,($247.26),$57.31,1.6,1.4,($7300.00),-13.52%
#1#=17#2#=44#3#=105,$71600.00,48.31%,1211,$390.21,($250.28),$59.12,1.6,1.5,($7112.50),-12.96%
#1#=17#2#=44#3#=110,$70250.00,48.12%,1199,$391.98,($250.68),$58.59,1.6,1.5,($7250.00),-13.09%
#1#=17#2#=44#3#=115,$68175.00,47.77%,1189,$395.22,($251.71),$57.34,1.6,1.4,($7125.00),-12.90%
#1#=17#2#=44#3#=120,$66637.50,47.43%,1187,$396.54,($250.98),$56.14,1.6,1.4,($7437.50),-13.64%
#1#=17#2#=44#3#=125,$66312.50,47.55%,1184,$396.94,($253.08),$56.01,1.6,1.4,($7612.50),-14.24%
#1#=17#2#=44#3#=130,$66662.50,47.88%,1178,$396.68,($255.80),$56.59,1.6,1.4,($7300.00),-13.57%
#1#=17#2#=44#3#=135,$63850.00,47.65%,1169,$397.89,($257.80),$54.62,1.5,1.4,($7850.00),-14.89%
#1#=17#2#=44#3#=140,$62650.00,47.81%,1165,$396.66,($260.34),$53.78,1.5,1.4,($6800.00),-13.15%
#1#=17#2#=44#3#=145,$60875.00,47.81%,1163,$396.61,($262.99),$52.34,1.5,1.4,($6837.50),-13.46%
#1#=17#2#=44#3#=150,$59237.50,47.68%,1162,$397.50,($264.76),$50.98,1.5,1.4,($6812.50),-13.49%
#1#=17#2#=48#3#=100,$68775.00,48.35%,1214,$387.86,($253.43),$56.65,1.5,1.4,($7425.00),-13.81%
#1#=17#2#=48#3#=105,$69737.50,48.88%,1203,$387.50,($257.09),$57.97,1.5,1.4,($7200.00),-13.20%
#1#=17#2#=48#3#=110,$69275.00,48.82%,1190,$388.30,($256.69),$58.21,1.5,1.4,($7337.50),-13.25%
#1#=17#2#=48#3#=115,$67887.50,48.60%,1179,$392.15,($258.77),$57.58,1.5,1.4,($7275.00),-13.03%
#1#=17#2#=48#3#=120,$66200.00,48.30%,1176,$393.93,($259.13),$56.29,1.5,1.4,($7662.50),-13.85%
#1#=17#2#=48#3#=125,$65962.50,48.34%,1173,$394.62,($260.38),$56.23,1.5,1.4,($7737.50),-14.22%
#1#=17#2#=48#3#=130,$67137.50,48.71%,1166,$395.03,($262.94),$57.58,1.5,1.4,($7900.00),-14.29%
#1#=17#2#=48#3#=135,$63962.50,48.15%,1161,$397.83,($263.16),$55.09,1.5,1.4,($8425.00),-15.72%
#1#=17#2#=48#3#=140,$63375.00,48.40%,1157,$395.78,($265.10),$54.78,1.5,1.4,($7300.00),-13.92%
#1#=17#2#=48#3#=145,$60912.50,48.35%,1154,$395.65,($268.23),$52.78,1.5,1.4,($7437.50),-14.51%
#1#=17#2#=48#3#=150,$59675.00,48.18%,1152,$397.12,($269.22),$51.80,1.5,1.4,($7312.50),-14.42%
#1#=17#2#=52#3#=100,$63875.00,48.72%,1209,$383.00,($260.83),$52.83,1.5,1.4,($7175.00),-14.70%
#1#=17#2#=52#3#=105,$65025.00,49.17%,1200,$382.56,($263.42),$54.19,1.5,1.4,($7100.00),-14.52%
#1#=17#2#=52#3#=110,$64100.00,48.95%,1191,$383.92,($262.71),$53.82,1.5,1.4,($7112.50),-14.56%
#1#=17#2#=52#3#=115,$62875.00,48.98%,1180,$385.75,($265.93),$53.28,1.5,1.4,($6912.50),-14.23%
#1#=17#2#=52#3#=120,$61787.50,48.77%,1177,$387.11,($266.02),$52.50,1.5,1.4,($6962.50),-13.14%
#1#=17#2#=52#3#=125,$61812.50,48.72%,1174,$388.53,($266.49),$52.65,1.5,1.4,($7062.50),-13.47%
#1#=17#2#=52#3#=130,$62650.00,49.01%,1167,$389.23,($268.89),$53.68,1.4,1.4,($7137.50),-13.44%
#1#=17#2#=52#3#=135,$60062.50,48.84%,1161,$389.70,($270.88),$51.73,1.4,1.4,($7662.50),-14.93%
#1#=17#2#=52#3#=140,$59200.00,49.00%,1155,$388.89,($273.20),$51.26,1.4,1.4,($7637.50),-15.03%
#1#=17#2#=52#3#=145,$56912.50,48.92%,1153,$388.81,($275.68),$49.36,1.4,1.4,($7662.50),-15.33%
#1#=17#2#=52#3#=150,$55487.50,48.70%,1150,$390.45,($276.55),$48.25,1.4,1.3,($7537.50),-15.27%
#1#=20#2#=32#3#=100,$60587.50,45.26%,1266,$397.47,($241.22),$47.86,1.6,1.4,($6500.00),-16.32%
#1#=20#2#=32#3#=105,$59912.50,45.43%,1257,$397.24,($243.31),$47.66,1.6,1.4,($6500.00),-18.61%
#1#=20#2#=32#3#=110,$57375.00,45.24%,1249,$397.77,($244.68),$45.94,1.6,1.3,($6500.00),-20.79%
#1#=20#2#=32#3#=115,$57687.50,45.28%,1239,$399.96,($245.85),$46.56,1.6,1.3,($6500.00),-22.82%
#1#=20#2#=32#3#=120,$56762.50,45.06%,1236,$401.01,($245.36),$45.92,1.6,1.3,($5887.50),-21.43%
#1#=20#2#=32#3#=125,$57300.00,45.41%,1231,$400.25,($247.67),$46.55,1.6,1.3,($6112.50),-23.39%
#1#=20#2#=32#3#=130,$56475.00,45.55%,1225,$401.61,($251.31),$46.10,1.6,1.3,($6375.00),-23.35%
#1#=20#2#=32#3#=135,$52550.00,45.07%,1218,$404.37,($253.29),$43.14,1.6,1.3,($6837.50),-25.80%
#1#=20#2#=32#3#=140,$50962.50,45.21%,1210,$404.34,($256.73),$42.12,1.6,1.3,($7037.50),-28.33%
#1#=20#2#=32#3#=145,$48462.50,45.29%,1210,$402.19,($259.72),$40.05,1.5,1.3,($7400.00),-29.79%
#1#=20#2#=32#3#=150,$48712.50,45.22%,1203,$403.88,($259.48),$40.49,1.6,1.3,($7137.50),-28.81%
#1#=20#2#=36#3#=100,$60787.50,45.51%,1248,$399.43,($244.25),$48.71,1.6,1.4,($7437.50),-17.20%
#1#=20#2#=36#3#=105,$60500.00,45.79%,1236,$399.36,($247.07),$48.95,1.6,1.4,($7300.00),-16.93%
#1#=20#2#=36#3#=110,$58750.00,45.72%,1227,$399.96,($248.69),$47.88,1.6,1.4,($7412.50),-17.18%
#1#=20#2#=36#3#=115,$57562.50,45.36%,1217,$404.62,($249.30),$47.30,1.6,1.3,($7250.00),-16.91%
#1#=20#2#=36#3#=120,$57350.00,45.25%,1211,$405.66,($248.79),$47.36,1.6,1.3,($7150.00),-14.82%
#1#=20#2#=36#3#=125,$58225.00,45.65%,1207,$404.63,($251.11),$48.24,1.6,1.4,($7300.00),-15.20%
#1#=20#2#=36#3#=130,$57275.00,45.89%,1203,$404.19,($254.74),$47.61,1.6,1.3,($7537.50),-15.55%
#1#=20#2#=36#3#=135,$53687.50,45.37%,1199,$406.46,($255.61),$44.78,1.6,1.3,($8262.50),-17.54%
#1#=20#2#=36#3#=140,$52200.00,45.47%,1192,$406.60,($258.73),$43.79,1.6,1.3,($7150.00),-17.43%
#1#=20#2#=36#3#=145,$50900.00,45.68%,1191,$404.69,($261.59),$42.74,1.5,1.3,($7512.50),-18.88%
#1#=20#2#=36#3#=150,$50925.00,45.78%,1184,$405.21,($262.77),$43.01,1.5,1.3,($7387.50),-17.57%
#1#=20#2#=40#3#=100,$59787.50,46.02%,1232,$398.90,($250.21),$48.53,1.6,1.4,($8012.50),-16.23%
#1#=20#2#=40#3#=105,$60350.00,46.44%,1221,$398.06,($252.83),$49.43,1.6,1.4,($7725.00),-15.65%
#1#=20#2#=40#3#=110,$58812.50,46.33%,1211,$399.58,($254.38),$48.57,1.6,1.4,($7737.50),-15.90%
#1#=20#2#=40#3#=115,$57725.00,46.24%,1196,$403.30,($257.08),$48.27,1.6,1.3,($7725.00),-15.58%
#1#=20#2#=40#3#=120,$56437.50,45.98%,1194,$404.49,($256.78),$47.27,1.6,1.3,($7850.00),-15.96%
#1#=20#2#=40#3#=125,$57537.50,46.26%,1189,$404.68,($258.27),$48.39,1.6,1.3,($8000.00),-16.34%
#1#=20#2#=40#3#=130,$58212.50,46.79%,1182,$403.93,($262.58),$49.25,1.5,1.4,($7712.50),-15.57%
#1#=20#2#=40#3#=135,$55150.00,46.47%,1175,$405.13,($263.99),$46.94,1.5,1.3,($8212.50),-17.01%
#1#=20#2#=40#3#=140,$54175.00,46.63%,1173,$403.45,($265.99),$46.18,1.5,1.3,($7075.00),-17.16%
#1#=20#2#=40#3#=145,$52587.50,46.58%,1170,$403.92,($268.08),$44.95,1.5,1.3,($7237.50),-18.66%
#1#=20#2#=40#3#=150,$52937.50,46.57%,1166,$404.67,($267.74),$45.40,1.5,1.3,($7212.50),-15.00%
#1#=20#2#=44#3#=100,$59387.50,47.21%,1220,$391.06,($257.55),$48.68,1.5,1.4,($8287.50),-16.89%
#1#=20#2#=44#3#=105,$60737.50,47.56%,1211,$391.04,($259.06),$50.15,1.5,1.4,($7637.50),-16.42%
#1#=20#2#=44#3#=110,$61087.50,47.62%,1199,$392.10,($259.24),$50.95,1.5,1.4,($7650.00),-16.01%
#1#=20#2#=44#3#=115,$58500.00,47.27%,1189,$395.31,($261.02),$49.20,1.5,1.4,($7487.50),-15.83%
#1#=20#2#=44#3#=120,$57037.50,47.01%,1187,$396.10,($260.71),$48.05,1.5,1.3,($7662.50),-15.32%
#1#=20#2#=44#3#=125,$57950.00,47.42%,1183,$394.83,($262.94),$48.99,1.5,1.4,($7762.50),-15.54%
#1#=20#2#=44#3#=130,$58075.00,47.62%,1178,$395.54,($265.52),$49.30,1.5,1.4,($7975.00),-15.82%
#1#=20#2#=44#3#=135,$55387.50,47.22%,1169,$398.23,($266.51),$47.38,1.5,1.3,($8475.00),-17.28%
#1#=20#2#=44#3#=140,$53975.00,47.38%,1165,$396.97,($269.41),$46.33,1.5,1.3,($7375.00),-15.48%
#1#=20#2#=44#3#=145,$53000.00,47.25%,1162,$398.47,($270.41),$45.61,1.5,1.3,($7512.50),-15.78%
#1#=20#2#=44#3#=150,$51537.50,47.24%,1160,$398.52,($272.63),$44.43,1.5,1.3,($7387.50),-15.55%
#1#=20#2#=48#3#=100,$58837.50,48.00%,1223,$383.18,($261.14),$48.11,1.5,1.4,($7862.50),-17.05%
#1#=20#2#=48#3#=105,$59387.50,48.31%,1213,$383.55,($263.76),$48.96,1.5,1.4,($7537.50),-17.03%
#1#=20#2#=48#3#=110,$60150.00,48.21%,1201,$385.69,($262.32),$50.08,1.5,1.4,($7537.50),-16.58%
#1#=20#2#=48#3#=115,$58387.50,48.15%,1192,$387.04,($265.01),$48.98,1.5,1.4,($7537.50),-16.44%
#1#=20#2#=48#3#=120,$57562.50,47.81%,1188,$389.13,($263.65),$48.45,1.5,1.4,($6962.50),-13.53%
#1#=20#2#=48#3#=125,$58412.50,48.01%,1183,$389.46,($264.72),$49.38,1.5,1.4,($7050.00),-13.65%
#1#=20#2#=48#3#=130,$58900.00,48.09%,1177,$391.23,($266.02),$50.04,1.5,1.4,($7250.00),-13.90%
#1#=20#2#=48#3#=135,$56362.50,47.74%,1171,$392.73,($266.63),$48.13,1.5,1.3,($7750.00),-15.47%
#1#=20#2#=48#3#=140,$55900.00,47.94%,1164,$392.09,($268.79),$48.02,1.5,1.3,($7250.00),-14.66%
#1#=20#2#=48#3#=145,$54412.50,47.80%,1161,$393.69,($270.77),$46.87,1.5,1.3,($7275.00),-14.94%
#1#=20#2#=48#3#=150,$53650.00,47.75%,1158,$395.00,($272.38),$46.33,1.5,1.3,($7150.00),-14.94%
#1#=20#2#=52#3#=100,$58700.00,47.55%,1205,$388.83,($259.65),$48.71,1.5,1.4,($7675.00),-17.47%
#1#=20#2#=52#3#=105,$59712.50,47.95%,1193,$388.83,($262.00),$50.05,1.5,1.4,($7537.50),-17.32%
#1#=20#2#=52#3#=110,$59275.00,47.89%,1186,$389.00,($261.61),$49.98,1.5,1.4,($7537.50),-17.33%
#1#=20#2#=52#3#=115,$57975.00,47.79%,1176,$391.57,($263.99),$49.30,1.5,1.4,($7537.50),-16.90%
#1#=20#2#=52#3#=120,$57637.50,47.74%,1173,$391.63,($263.74),$49.14,1.5,1.4,($7012.50),-14.13%
#1#=20#2#=52#3#=125,$58725.00,47.86%,1168,$392.73,($264.06),$50.28,1.5,1.4,($7137.50),-14.32%
#1#=20#2#=52#3#=130,$58825.00,48.02%,1162,$393.97,($266.58),$50.62,1.5,1.4,($7350.00),-14.58%
#1#=20#2#=52#3#=135,$56412.50,47.84%,1156,$394.71,($268.43),$48.80,1.5,1.3,($8050.00),-16.63%
#1#=20#2#=52#3#=140,$55900.00,47.96%,1151,$394.34,($270.08),$48.57,1.5,1.3,($7237.50),-16.12%
#1#=20#2#=52#3#=145,$53625.00,47.78%,1149,$395.42,($272.44),$46.67,1.5,1.3,($7362.50),-17.35%
#1#=20#2#=52#3#=150,$52287.50,47.64%,1146,$396.79,($273.94),$45.63,1.4,1.3,($7237.50),-18.44%
v5 system report 14-44-105
v5 system report.png
v5 system report.png (57.38 KiB) Viewed 34228 times
v5 equity curve
v5 curve.png
v5 curve.png (40.54 KiB) Viewed 34228 times
and here are the v7 original buttonwood SMA and reverse channel breakout EMA results

Code: Select all

Parameters,Profit/Loss,Accuracy,Num. Trades,Avg. Win,Avg. Loss,Avg. Trade,Win/Loss Ratio,Profit Factor,Max. Drawdown,Max. DD %
#1#=6#2#=30#3#=75,$153375.00,40.56%,1499,$908.39,($447.73),$102.32,2.0,1.4,($11637.50),-29.57%
#1#=6#2#=30#3#=80,$156800.00,41.16%,1470,$909.98,($455.19),$106.67,2.0,1.4,($11712.50),-29.00%
#1#=6#2#=30#3#=85,$154975.00,41.23%,1443,$919.24,($462.23),$107.40,2.0,1.4,($12925.00),-31.39%
#1#=6#2#=30#3#=90,$159087.50,41.75%,1418,$923.35,($469.17),$112.19,2.0,1.4,($13212.50),-29.06%
#1#=6#2#=30#3#=95,$170100.00,42.13%,1398,$936.46,($471.54),$121.67,2.0,1.4,($12225.00),-29.45%
#1#=6#2#=30#3#=100,$163287.50,41.89%,1387,$949.55,($481.89),$117.73,2.0,1.4,($12950.00),-33.21%
#1#=6#2#=30#3#=105,$162162.50,42.18%,1375,$951.77,($490.39),$117.94,1.9,1.4,($13750.00),-38.13%
#1#=6#2#=30#3#=110,$162250.00,42.76%,1354,$946.16,($497.52),$119.83,1.9,1.4,($13825.00),-40.84%
#1#=6#2#=30#3#=115,$159650.00,42.90%,1345,$944.30,($501.58),$118.70,1.9,1.4,($13237.50),-34.87%
#1#=6#2#=30#3#=120,$156900.00,42.47%,1342,$954.56,($501.55),$116.92,1.9,1.4,($12225.00),-33.67%
#1#=6#2#=30#3#=125,$156750.00,42.55%,1335,$965.25,($510.45),$117.42,1.9,1.4,($13837.50),-41.15%
#1#=6#2#=30#3#=130,$156075.00,42.74%,1329,$964.94,($515.13),$117.44,1.9,1.4,($13475.00),-41.07%
#1#=6#2#=30#3#=135,$147637.50,42.45%,1324,$974.93,($525.30),$111.51,1.9,1.4,($14225.00),-46.34%
#1#=6#2#=30#3#=140,$144087.50,43.02%,1311,$968.53,($538.37),$109.91,1.8,1.4,($14750.00),-48.68%
#1#=6#2#=30#3#=145,$139150.00,42.87%,1311,$972.51,($543.93),$106.14,1.8,1.3,($17962.50),-60.23%
#1#=6#2#=30#3#=150,$140125.00,42.87%,1304,$985.93,($551.69),$107.46,1.8,1.3,($18912.50),-63.81%
#1#=6#2#=34#3#=75,$163987.50,41.85%,1472,$894.62,($452.22),$111.40,2.0,1.4,($11662.50),-28.14%
#1#=6#2#=34#3#=80,$164062.50,42.02%,1447,$901.95,($458.08),$113.38,2.0,1.4,($11662.50),-25.47%
#1#=6#2#=34#3#=85,$162925.00,42.35%,1419,$902.27,($463.74),$114.82,1.9,1.4,($11362.50),-28.26%
#1#=6#2#=34#3#=90,$165850.00,42.77%,1391,$909.52,($471.50),$119.23,1.9,1.4,($11850.00),-26.08%
#1#=6#2#=34#3#=95,$174900.00,43.07%,1370,$922.08,($473.24),$127.66,1.9,1.5,($11125.00),-26.13%
#1#=6#2#=34#3#=100,$170150.00,42.71%,1358,$939.42,($481.64),$125.29,2.0,1.5,($11725.00),-26.63%
#1#=6#2#=34#3#=105,$168512.50,42.87%,1346,$943.35,($488.69),$125.20,1.9,1.4,($12350.00),-32.73%
#1#=6#2#=34#3#=110,$165625.00,43.30%,1328,$940.15,($497.96),$124.72,1.9,1.4,($12425.00),-36.45%
#1#=6#2#=34#3#=115,$163612.50,43.40%,1318,$941.13,($502.30),$124.14,1.9,1.4,($11962.50),-34.40%
#1#=6#2#=34#3#=120,$160950.00,43.04%,1315,$949.78,($502.84),$122.40,1.9,1.4,($11400.00),-33.76%
#1#=6#2#=34#3#=125,$158512.50,43.05%,1310,$956.80,($510.89),$121.00,1.9,1.4,($13212.50),-39.71%
#1#=6#2#=34#3#=130,$153575.00,43.25%,1304,$950.07,($516.57),$117.77,1.8,1.4,($12937.50),-41.04%
#1#=6#2#=34#3#=135,$145412.50,42.88%,1299,$960.21,($524.83),$111.94,1.8,1.4,($13050.00),-43.23%
#1#=6#2#=34#3#=140,$140325.00,43.29%,1289,$956.92,($538.49),$108.86,1.8,1.4,($13887.50),-46.70%
#1#=6#2#=34#3#=145,$139550.00,43.08%,1286,$965.84,($540.33),$108.51,1.8,1.4,($15062.50),-51.10%
#1#=6#2#=34#3#=150,$143987.50,43.23%,1277,$987.73,($553.43),$112.75,1.8,1.4,($16537.50),-55.61%
#1#=6#2#=38#3#=75,$160262.50,42.37%,1461,$885.26,($460.47),$109.69,1.9,1.4,($12112.50),-32.25%
#1#=6#2#=38#3#=80,$160412.50,42.60%,1439,$892.90,($468.45),$111.47,1.9,1.4,($12112.50),-29.03%
#1#=6#2#=38#3#=85,$164012.50,42.91%,1410,$899.50,($472.28),$116.32,1.9,1.4,($12487.50),-29.52%
#1#=6#2#=38#3#=90,$169637.50,43.62%,1380,$901.62,($479.61),$122.93,1.9,1.5,($12937.50),-23.80%
#1#=6#2#=38#3#=95,$178800.00,43.75%,1360,$918.09,($480.34),$131.47,1.9,1.5,($12225.00),-23.79%
#1#=6#2#=38#3#=100,$171537.50,43.33%,1350,$932.52,($488.87),$127.06,1.9,1.5,($12975.00),-25.91%
#1#=6#2#=38#3#=105,$168837.50,43.50%,1338,$935.80,($497.09),$126.19,1.9,1.4,($13600.00),-34.30%
#1#=6#2#=38#3#=110,$167400.00,43.72%,1322,$938.91,($504.42),$126.63,1.9,1.4,($13525.00),-34.46%
#1#=6#2#=38#3#=115,$168775.00,43.93%,1309,$940.80,($507.07),$128.93,1.9,1.5,($12962.50),-34.66%
#1#=6#2#=38#3#=120,$165475.00,43.67%,1303,$947.80,($509.30),$127.00,1.9,1.4,($12462.50),-36.42%
#1#=6#2#=38#3#=125,$164650.00,43.75%,1296,$957.10,($518.55),$127.04,1.8,1.4,($12825.00),-37.31%
#1#=6#2#=38#3#=130,$159712.50,43.95%,1290,$951.30,($525.14),$123.81,1.8,1.4,($13287.50),-40.18%
#1#=6#2#=38#3#=135,$150812.50,43.39%,1286,$964.43,($532.06),$117.27,1.8,1.4,($14262.50),-41.77%
#1#=6#2#=38#3#=140,$146150.00,43.97%,1276,$956.44,($546.03),$114.54,1.8,1.4,($14487.50),-45.37%
#1#=6#2#=38#3#=145,$146250.00,43.76%,1275,$963.64,($545.97),$114.71,1.8,1.4,($15300.00),-47.75%
#1#=6#2#=38#3#=150,$149462.50,43.92%,1266,$980.51,($557.32),$118.06,1.8,1.4,($15100.00),-51.60%
#1#=6#2#=42#3#=75,$170612.50,42.90%,1443,$881.62,($455.23),$118.23,1.9,1.5,($14137.50),-29.58%
#1#=6#2#=42#3#=80,$167300.00,43.22%,1423,$883.46,($465.38),$117.57,1.9,1.4,($14500.00),-27.38%
#1#=6#2#=42#3#=85,$171125.00,43.62%,1394,$888.98,($469.94),$122.76,1.9,1.5,($15737.50),-26.01%
#1#=6#2#=42#3#=90,$172450.00,44.30%,1368,$886.76,($478.90),$126.06,1.9,1.5,($16612.50),-21.77%
#1#=6#2#=42#3#=95,$177212.50,44.51%,1348,$894.88,($480.90),$131.46,1.9,1.5,($16075.00),-22.95%
#1#=6#2#=42#3#=100,$171987.50,43.87%,1338,$916.27,($487.17),$128.54,1.9,1.5,($16837.50),-23.08%
#1#=6#2#=42#3#=105,$171875.00,44.15%,1325,$920.02,($495.05),$129.72,1.9,1.5,($16487.50),-27.79%
#1#=6#2#=42#3#=110,$171637.50,44.53%,1307,$922.14,($503.52),$131.32,1.8,1.5,($16512.50),-33.08%
#1#=6#2#=42#3#=115,$173287.50,44.38%,1300,$931.65,($503.84),$133.30,1.8,1.5,($15775.00),-37.58%
#1#=6#2#=42#3#=120,$166637.50,44.30%,1289,$930.60,($507.99),$129.28,1.8,1.5,($15187.50),-39.28%
#1#=6#2#=42#3#=125,$167437.50,44.42%,1281,$939.43,($515.59),$130.71,1.8,1.5,($15612.50),-40.20%
#1#=6#2#=42#3#=130,$162712.50,44.60%,1278,$933.68,($521.88),$127.32,1.8,1.4,($16100.00),-43.54%
#1#=6#2#=42#3#=135,$151562.50,43.97%,1276,$945.81,($530.12),$118.78,1.8,1.4,($17075.00),-45.21%
#1#=6#2#=42#3#=140,$147475.00,44.55%,1266,$937.10,($542.81),$116.49,1.7,1.4,($17062.50),-48.65%
#1#=6#2#=42#3#=145,$147362.50,44.46%,1264,$941.44,($543.77),$116.58,1.7,1.4,($17412.50),-51.05%
#1#=6#2#=42#3#=150,$149337.50,44.38%,1255,$964.47,($555.69),$118.99,1.7,1.4,($16325.00),-54.94%
#1#=6#2#=46#3#=75,$168387.50,42.89%,1448,$883.29,($459.66),$116.29,1.9,1.4,($15862.50),-25.52%
#1#=6#2#=46#3#=80,$163437.50,43.38%,1427,$881.50,($473.04),$114.53,1.9,1.4,($16350.00),-23.21%
#1#=6#2#=46#3#=85,$164100.00,43.78%,1398,$884.21,($479.69),$117.38,1.8,1.4,($17325.00),-22.61%
#1#=6#2#=46#3#=90,$164975.00,44.35%,1371,$881.27,($486.03),$120.33,1.8,1.4,($18312.50),-20.73%
#1#=6#2#=46#3#=95,$173700.00,44.65%,1346,$892.18,($486.58),$129.05,1.8,1.5,($16987.50),-20.94%
#1#=6#2#=46#3#=100,$168075.00,44.01%,1336,$916.20,($495.52),$125.80,1.8,1.5,($17812.50),-21.06%
#1#=6#2#=46#3#=105,$168625.00,44.22%,1323,$921.00,($501.58),$127.46,1.8,1.5,($17400.00),-22.69%
#1#=6#2#=46#3#=110,$170150.00,44.75%,1305,$918.81,($508.24),$130.38,1.8,1.5,($17425.00),-22.69%
#1#=6#2#=46#3#=115,$172137.50,44.89%,1292,$923.38,($510.43),$133.23,1.8,1.5,($16662.50),-25.25%
#1#=6#2#=46#3#=120,$164375.00,44.81%,1281,$920.27,($514.66),$128.32,1.8,1.5,($16425.00),-27.09%
#1#=6#2#=46#3#=125,$164800.00,44.94%,1275,$924.15,($519.57),$129.25,1.8,1.5,($16850.00),-27.28%
#1#=6#2#=46#3#=130,$163100.00,45.13%,1272,$919.12,($522.17),$128.22,1.8,1.4,($17075.00),-29.53%
#1#=6#2#=46#3#=135,$151912.50,44.48%,1268,$933.95,($532.44),$119.80,1.8,1.4,($18087.50),-30.95%
#1#=6#2#=46#3#=140,$149000.00,45.14%,1256,$925.75,($545.57),$118.63,1.7,1.4,($18137.50),-33.39%
#1#=6#2#=46#3#=145,$144412.50,45.05%,1252,$924.56,($548.02),$115.35,1.7,1.4,($19162.50),-35.77%
#1#=6#2#=46#3#=150,$147350.00,45.02%,1246,$943.65,($557.72),$118.26,1.7,1.4,($18137.50),-37.75%
#1#=6#2#=50#3#=75,$166437.50,42.68%,1448,$892.98,($464.37),$114.94,1.9,1.4,($17137.50),-26.57%
#1#=6#2#=50#3#=80,$161050.00,43.18%,1429,$888.55,($476.83),$112.70,1.9,1.4,($17325.00),-24.59%
#1#=6#2#=50#3#=85,$165062.50,44.00%,1400,$881.98,($482.45),$117.90,1.8,1.4,($18300.00),-23.80%
#1#=6#2#=50#3#=90,$165187.50,44.53%,1370,$878.85,($488.04),$120.57,1.8,1.4,($18750.00),-21.44%
#1#=6#2#=50#3#=95,$175337.50,45.01%,1344,$885.58,($487.74),$130.46,1.8,1.5,($17237.50),-22.14%
#1#=6#2#=50#3#=100,$171925.00,44.27%,1335,$914.59,($495.43),$128.78,1.8,1.5,($18075.00),-22.27%
#1#=6#2#=50#3#=105,$171187.50,44.33%,1322,$918.52,($498.73),$129.49,1.8,1.5,($18275.00),-22.73%
#1#=6#2#=50#3#=110,$171862.50,44.75%,1305,$920.59,($507.30),$131.70,1.8,1.5,($18300.00),-22.73%
#1#=6#2#=50#3#=115,$172950.00,44.92%,1289,$925.60,($511.23),$134.17,1.8,1.5,($17487.50),-25.30%
#1#=6#2#=50#3#=120,$166000.00,44.87%,1277,$922.53,($515.07),$129.99,1.8,1.5,($17250.00),-26.97%
#1#=6#2#=50#3#=125,$165525.00,44.97%,1272,$924.63,($519.09),$130.13,1.8,1.5,($17675.00),-26.70%
#1#=6#2#=50#3#=130,$161975.00,45.18%,1266,$917.68,($522.96),$127.94,1.8,1.4,($17900.00),-27.81%
#1#=6#2#=50#3#=135,$151512.50,44.62%,1264,$929.63,($532.57),$119.87,1.7,1.4,($18912.50),-29.77%
#1#=6#2#=50#3#=140,$148925.00,45.22%,1254,$922.24,($544.38),$118.76,1.7,1.4,($18487.50),-31.98%
#1#=6#2#=50#3#=145,$145050.00,45.20%,1250,$918.87,($546.15),$116.04,1.7,1.4,($19237.50),-34.37%
#1#=6#2#=50#3#=150,$151662.50,45.25%,1242,$940.50,($554.26),$122.11,1.7,1.4,($18175.00),-37.13%
#1#=6#2#=54#3#=75,$150925.00,42.16%,1442,$902.78,($477.17),$104.66,1.9,1.4,($18912.50),-26.61%
#1#=6#2#=54#3#=80,$146737.50,42.60%,1425,$897.94,($486.93),$102.97,1.8,1.4,($19362.50),-24.66%
#1#=6#2#=54#3#=85,$150650.00,43.43%,1400,$891.22,($493.96),$107.61,1.8,1.4,($19412.50),-23.60%
#1#=6#2#=54#3#=90,$155712.50,44.11%,1367,$888.60,($497.53),$113.91,1.8,1.4,($19862.50),-23.43%
#1#=6#2#=54#3#=95,$164025.00,44.59%,1341,$893.81,($498.62),$122.32,1.8,1.4,($17725.00),-24.51%
#1#=6#2#=54#3#=100,$160850.00,44.07%,1332,$916.03,($505.86),$120.76,1.8,1.4,($18625.00),-24.65%
#1#=6#2#=54#3#=105,$159075.00,44.05%,1319,$921.60,($509.99),$120.60,1.8,1.4,($18825.00),-25.11%
#1#=6#2#=54#3#=110,$159787.50,44.40%,1304,$924.01,($517.53),$122.54,1.8,1.4,($18850.00),-25.11%
#1#=6#2#=54#3#=115,$161400.00,44.56%,1286,$930.04,($521.06),$125.51,1.8,1.4,($18012.50),-26.16%
#1#=6#2#=54#3#=120,$154700.00,44.51%,1274,$926.74,($524.42),$121.43,1.8,1.4,($17500.00),-26.85%
#1#=6#2#=54#3#=125,$154037.50,44.64%,1268,$928.49,($529.18),$121.48,1.8,1.4,($17925.00),-27.50%
#1#=6#2#=54#3#=130,$152912.50,45.00%,1260,$918.14,($530.56),$121.36,1.7,1.4,($18075.00),-28.63%
#1#=6#2#=54#3#=135,$142487.50,44.66%,1254,$925.65,($541.61),$113.63,1.7,1.4,($19312.50),-30.64%
#1#=6#2#=54#3#=140,$142287.50,45.26%,1244,$919.27,($551.05),$114.38,1.7,1.4,($18850.00),-32.88%
#1#=6#2#=54#3#=145,$139875.00,45.10%,1244,$921.21,($551.87),$112.44,1.7,1.4,($19525.00),-35.27%
#1#=6#2#=54#3#=150,$146400.00,45.23%,1236,$941.14,($560.86),$118.45,1.7,1.4,($18800.00),-38.12%
#1#=9#2#=30#3#=75,$159100.00,41.63%,1458,$902.51,($456.79),$109.12,2.0,1.4,($11337.50),-29.56%
#1#=9#2#=30#3#=80,$159062.50,41.84%,1434,$910.81,($464.54),$110.92,2.0,1.4,($11400.00),-28.34%
#1#=9#2#=30#3#=85,$159300.00,42.09%,1409,$916.88,($471.09),$113.06,1.9,1.4,($12312.50),-29.60%
#1#=9#2#=30#3#=90,$161587.50,42.75%,1380,$916.53,($479.95),$117.09,1.9,1.4,($12612.50),-30.72%
#1#=9#2#=30#3#=95,$167125.00,43.10%,1362,$916.91,($478.84),$122.71,1.9,1.5,($11975.00),-31.29%
#1#=9#2#=30#3#=100,$163437.50,42.81%,1350,$931.51,($485.72),$121.06,1.9,1.4,($12362.50),-29.85%
#1#=9#2#=30#3#=105,$163487.50,43.11%,1336,$937.74,($495.59),$122.37,1.9,1.4,($12987.50),-32.77%
#1#=9#2#=30#3#=110,$159287.50,43.24%,1323,$938.99,($503.08),$120.40,1.9,1.4,($12912.50),-36.43%
#1#=9#2#=30#3#=115,$167412.50,43.40%,1311,$944.20,($498.43),$127.70,1.9,1.5,($12300.00),-37.11%
#1#=9#2#=30#3#=120,$167462.50,43.03%,1306,$958.32,($498.81),$128.23,1.9,1.5,($11362.50),-33.47%
#1#=9#2#=30#3#=125,$166050.00,43.31%,1300,$960.59,($508.50),$127.73,1.9,1.4,($12600.00),-37.29%
#1#=9#2#=30#3#=130,$162762.50,43.29%,1296,$960.98,($512.04),$125.59,1.9,1.4,($12687.50),-38.17%
#1#=9#2#=30#3#=135,$158262.50,42.82%,1289,$977.47,($517.37),$122.78,1.9,1.4,($12887.50),-41.26%
#1#=9#2#=30#3#=140,$157550.00,43.43%,1278,$969.50,($526.31),$123.28,1.8,1.4,($13062.50),-43.34%
#1#=9#2#=30#3#=145,$151787.50,43.07%,1277,$983.16,($535.01),$118.86,1.8,1.4,($16025.00),-53.75%
#1#=9#2#=30#3#=150,$152912.50,43.00%,1272,$1003.54,($546.24),$120.21,1.8,1.4,($16700.00),-56.25%
#1#=9#2#=34#3#=75,$145587.50,42.16%,1442,$892.54,($476.11),$100.96,1.9,1.4,($10975.00),-33.36%
#1#=9#2#=34#3#=80,$145287.50,42.49%,1419,$893.10,($481.92),$102.39,1.9,1.4,($11575.00),-30.20%
#1#=9#2#=34#3#=85,$146437.50,42.77%,1396,$896.36,($486.47),$104.90,1.8,1.4,($12200.00),-32.21%
#1#=9#2#=34#3#=90,$151025.00,43.37%,1372,$895.59,($491.44),$110.08,1.8,1.4,($12600.00),-30.86%
#1#=9#2#=34#3#=95,$158462.50,43.75%,1353,$902.47,($493.82),$117.12,1.8,1.4,($12162.50),-31.32%
#1#=9#2#=34#3#=100,$159687.50,43.51%,1340,$924.14,($500.78),$119.17,1.8,1.4,($12425.00),-28.65%
#1#=9#2#=34#3#=105,$159812.50,43.52%,1328,$934.86,($507.38),$120.34,1.8,1.4,($12575.00),-32.22%
#1#=9#2#=34#3#=110,$161850.00,43.71%,1311,$942.15,($512.20),$123.46,1.8,1.4,($12425.00),-32.97%
#1#=9#2#=34#3#=115,$163925.00,43.76%,1298,$945.53,($511.15),$126.29,1.8,1.4,($11887.50),-34.21%
#1#=9#2#=34#3#=120,$164375.00,43.50%,1292,$957.63,($512.07),$127.23,1.9,1.4,($11137.50),-30.52%
#1#=9#2#=34#3#=125,$163712.50,43.58%,1285,$966.25,($520.53),$127.40,1.9,1.4,($11375.00),-34.33%
#1#=9#2#=34#3#=130,$161287.50,43.67%,1280,$964.47,($524.06),$126.01,1.8,1.4,($12150.00),-34.80%
#1#=9#2#=34#3#=135,$152725.00,43.22%,1275,$976.61,($532.30),$119.78,1.8,1.4,($12950.00),-37.77%
#1#=9#2#=34#3#=140,$151125.00,43.86%,1263,$969.16,($544.13),$119.66,1.8,1.4,($12787.50),-40.03%
#1#=9#2#=34#3#=145,$146637.50,43.57%,1260,$979.67,($550.21),$116.38,1.8,1.4,($13825.00),-43.54%
#1#=9#2#=34#3#=150,$148237.50,43.59%,1255,$998.93,($562.39),$118.12,1.8,1.4,($13600.00),-46.81%
#1#=9#2#=38#3#=75,$144900.00,42.84%,1417,$882.97,($482.79),$102.26,1.8,1.4,($13587.50),-30.98%
#1#=9#2#=38#3#=80,$146925.00,43.02%,1397,$890.02,($487.41),$105.17,1.8,1.4,($13537.50),-27.41%
#1#=9#2#=38#3#=85,$148400.00,43.68%,1376,$882.45,($492.84),$107.85,1.8,1.4,($13237.50),-25.50%
#1#=9#2#=38#3#=90,$152025.00,44.30%,1352,$879.99,($498.12),$112.44,1.8,1.4,($13675.00),-22.53%
#1#=9#2#=38#3#=95,$161275.00,44.67%,1332,$889.73,($499.47),$121.08,1.8,1.4,($13337.50),-23.74%
#1#=9#2#=38#3#=100,$163512.50,44.24%,1320,$916.29,($504.89),$123.87,1.8,1.4,($13650.00),-23.88%
#1#=9#2#=38#3#=105,$162775.00,44.23%,1309,$927.48,($512.65),$124.35,1.8,1.4,($13850.00),-24.61%
#1#=9#2#=38#3#=110,$163962.50,44.40%,1295,$932.72,($517.15),$126.61,1.8,1.4,($13650.00),-30.98%
#1#=9#2#=38#3#=115,$168925.00,44.44%,1278,$944.37,($517.57),$132.18,1.8,1.5,($13075.00),-32.36%
#1#=9#2#=38#3#=120,$163562.50,44.25%,1270,$948.95,($522.25),$128.79,1.8,1.4,($12525.00),-36.65%
#1#=9#2#=38#3#=125,$162875.00,44.30%,1264,$955.74,($528.89),$128.86,1.8,1.4,($12762.50),-40.12%
#1#=9#2#=38#3#=130,$160937.50,44.40%,1259,$953.00,($531.13),$127.83,1.8,1.4,($13200.00),-40.99%
#1#=9#2#=38#3#=135,$149950.00,43.91%,1257,$962.84,($541.19),$119.29,1.8,1.4,($14000.00),-44.27%
#1#=9#2#=38#3#=140,$143987.50,44.52%,1249,$949.06,($553.66),$115.28,1.7,1.4,($13750.00),-46.70%
#1#=9#2#=38#3#=145,$139837.50,44.36%,1249,$954.63,($559.75),$111.96,1.7,1.4,($15000.00),-52.82%
#1#=9#2#=38#3#=150,$140037.50,44.22%,1246,$973.50,($570.31),$112.39,1.7,1.4,($15650.00),-55.47%
#1#=9#2#=42#3#=75,$153287.50,43.23%,1404,$884.08,($480.99),$109.18,1.8,1.4,($12950.00),-30.21%
#1#=9#2#=42#3#=80,$153450.00,43.50%,1384,$890.97,($489.66),$110.87,1.8,1.4,($12900.00),-26.76%
#1#=9#2#=42#3#=85,$153900.00,44.17%,1363,$882.45,($495.84),$112.91,1.8,1.4,($13687.50),-24.14%
#1#=9#2#=42#3#=90,$159387.50,45.02%,1335,$877.08,($501.00),$119.39,1.8,1.4,($14100.00),-23.85%
#1#=9#2#=42#3#=95,$168787.50,45.58%,1312,$881.96,($502.28),$128.65,1.8,1.5,($12687.50),-25.06%
#1#=9#2#=42#3#=100,$166875.00,44.93%,1302,$908.35,($508.39),$128.17,1.8,1.5,($13050.00),-25.21%
#1#=9#2#=42#3#=105,$165525.00,45.15%,1289,$909.71,($514.75),$128.41,1.8,1.5,($13250.00),-25.70%
#1#=9#2#=42#3#=110,$163387.50,45.14%,1276,$917.34,($521.43),$128.05,1.8,1.4,($13275.00),-27.00%
#1#=9#2#=42#3#=115,$168675.00,45.16%,1260,$926.01,($518.42),$133.87,1.8,1.5,($12700.00),-28.80%
#1#=9#2#=42#3#=120,$166550.00,45.05%,1252,$936.92,($525.98),$133.03,1.8,1.5,($12562.50),-30.58%
#1#=9#2#=42#3#=125,$165400.00,45.22%,1245,$937.46,($531.36),$132.85,1.8,1.5,($12862.50),-31.23%
#1#=9#2#=42#3#=130,$164337.50,45.32%,1240,$936.59,($533.96),$132.53,1.8,1.5,($13237.50),-33.28%
#1#=9#2#=42#3#=135,$152212.50,44.83%,1238,$945.68,($545.59),$122.95,1.7,1.4,($14212.50),-35.70%
#1#=9#2#=42#3#=140,$148737.50,45.29%,1232,$936.74,($554.84),$120.73,1.7,1.4,($13912.50),-38.25%
#1#=9#2#=42#3#=145,$143912.50,45.28%,1228,$934.85,($559.32),$117.19,1.7,1.4,($14787.50),-43.05%
#1#=9#2#=42#3#=150,$145575.00,45.18%,1224,$950.99,($566.80),$118.93,1.7,1.4,($14487.50),-46.39%
#1#=9#2#=46#3#=75,$153787.50,43.21%,1391,$885.23,($478.78),$110.56,1.8,1.4,($15362.50),-25.93%
#1#=9#2#=46#3#=80,$152787.50,43.66%,1372,$888.90,($491.15),$111.36,1.8,1.4,($15125.00),-23.96%
#1#=9#2#=46#3#=85,$153550.00,44.27%,1353,$878.71,($494.43),$113.49,1.8,1.4,($15712.50),-23.29%
#1#=9#2#=46#3#=90,$156825.00,44.89%,1330,$873.26,($497.29),$117.91,1.8,1.4,($16225.00),-20.92%
#1#=9#2#=46#3#=95,$165800.00,45.23%,1311,$882.86,($498.24),$126.47,1.8,1.5,($15287.50),-22.44%
#1#=9#2#=46#3#=100,$164050.00,44.62%,1300,$909.89,($505.12),$126.19,1.8,1.5,($16212.50),-20.78%
#1#=9#2#=46#3#=105,$163525.00,44.91%,1287,$911.44,($512.39),$127.06,1.8,1.5,($16312.50),-21.25%
#1#=9#2#=46#3#=110,$160512.50,44.98%,1274,$916.25,($519.97),$125.99,1.8,1.4,($16337.50),-23.92%
#1#=9#2#=46#3#=115,$167562.50,45.07%,1258,$925.68,($517.08),$133.20,1.8,1.5,($15612.50),-25.73%
#1#=9#2#=46#3#=120,$167225.00,45.08%,1249,$938.03,($526.08),$133.89,1.8,1.5,($15037.50),-28.08%
#1#=9#2#=46#3#=125,$165375.00,45.40%,1240,$936.63,($534.64),$133.37,1.8,1.5,($15337.50),-27.82%
#1#=9#2#=46#3#=130,$164712.50,45.82%,1231,$928.66,($538.31),$133.80,1.7,1.5,($15525.00),-30.32%
#1#=9#2#=46#3#=135,$151162.50,45.41%,1231,$933.56,($551.64),$122.80,1.7,1.4,($16487.50),-32.45%
#1#=9#2#=46#3#=140,$148737.50,45.95%,1223,$924.62,($561.12),$121.62,1.6,1.4,($15600.00),-34.83%
#1#=9#2#=46#3#=145,$144112.50,45.86%,1219,$925.63,($565.63),$118.22,1.6,1.4,($15825.00),-39.41%
#1#=9#2#=46#3#=150,$148525.00,45.67%,1213,$947.59,($571.23),$122.44,1.7,1.4,($14525.00),-41.88%
#1#=9#2#=50#3#=75,$159050.00,43.51%,1379,$886.17,($478.37),$115.34,1.9,1.4,($16275.00),-25.37%
#1#=9#2#=50#3#=80,$154687.50,43.79%,1361,$889.24,($490.59),$113.66,1.8,1.4,($16425.00),-25.11%
#1#=9#2#=50#3#=85,$156562.50,44.56%,1342,$880.43,($497.23),$116.66,1.8,1.4,($16362.50),-24.20%
#1#=9#2#=50#3#=90,$158662.50,45.19%,1319,$872.67,($499.93),$120.29,1.7,1.4,($16937.50),-21.67%
#1#=9#2#=50#3#=95,$164537.50,45.62%,1300,$874.39,($500.67),$126.57,1.7,1.5,($16112.50),-20.79%
#1#=9#2#=50#3#=100,$165175.00,45.18%,1286,$897.59,($505.43),$128.44,1.8,1.5,($16825.00),-20.91%
#1#=9#2#=50#3#=105,$168637.50,45.68%,1274,$902.00,($514.92),$132.37,1.8,1.5,($17025.00),-21.38%
#1#=9#2#=50#3#=110,$170512.50,45.95%,1258,$911.55,($524.06),$135.54,1.7,1.5,($17050.00),-21.38%
#1#=9#2#=50#3#=115,$173162.50,46.06%,1244,$915.29,($523.55),$139.20,1.7,1.5,($16275.00),-21.50%
#1#=9#2#=50#3#=120,$171137.50,45.99%,1235,$923.44,($529.80),$138.57,1.7,1.5,($15600.00),-23.63%
#1#=9#2#=50#3#=125,$173112.50,46.05%,1229,$930.57,($533.31),$140.86,1.7,1.5,($15862.50),-23.81%
#1#=9#2#=50#3#=130,$173825.00,46.60%,1219,$920.64,($536.25),$142.60,1.7,1.5,($16050.00),-24.60%
#1#=9#2#=50#3#=135,$162662.50,46.46%,1214,$923.67,($551.21),$133.99,1.7,1.5,($16962.50),-26.43%
#1#=9#2#=50#3#=140,$160775.00,47.05%,1203,$915.28,($560.87),$133.65,1.6,1.5,($16512.50),-28.08%
#1#=9#2#=50#3#=145,$154600.00,46.88%,1201,$918.85,($568.51),$128.73,1.6,1.4,($16512.50),-32.07%
#1#=9#2#=50#3#=150,$157437.50,46.78%,1197,$935.69,($575.43),$131.53,1.6,1.4,($16150.00),-36.53%
#1#=9#2#=54#3#=75,$143237.50,42.64%,1379,$896.05,($485.00),$103.87,1.8,1.4,($17650.00),-24.37%
#1#=9#2#=54#3#=80,$142525.00,43.15%,1358,$895.93,($495.45),$104.95,1.8,1.4,($17800.00),-24.40%
#1#=9#2#=54#3#=85,$141500.00,44.04%,1342,$879.51,($503.71),$105.44,1.7,1.4,($17850.00),-23.66%
#1#=9#2#=54#3#=90,$143825.00,44.60%,1316,$874.89,($507.18),$109.29,1.7,1.4,($18425.00),-24.23%
#1#=9#2#=54#3#=95,$151787.50,45.03%,1297,$877.23,($505.63),$117.03,1.7,1.4,($17475.00),-20.86%
#1#=9#2#=54#3#=100,$154450.00,44.86%,1284,$894.49,($509.57),$120.29,1.8,1.4,($18250.00),-20.89%
#1#=9#2#=54#3#=105,$157950.00,45.25%,1273,$901.22,($518.15),$124.08,1.7,1.4,($18450.00),-21.91%
#1#=9#2#=54#3#=110,$159475.00,45.55%,1258,$908.33,($527.01),$126.77,1.7,1.4,($18475.00),-21.91%
#1#=9#2#=54#3#=115,$164687.50,45.85%,1241,$913.01,($527.99),$132.71,1.7,1.5,($17650.00),-22.25%
#1#=9#2#=54#3#=120,$162300.00,45.70%,1232,$920.85,($532.34),$131.74,1.7,1.5,($16562.50),-24.36%
#1#=9#2#=54#3#=125,$161187.50,45.80%,1227,$921.29,($536.20),$131.37,1.7,1.5,($16825.00),-24.78%
#1#=9#2#=54#3#=130,$164175.00,46.26%,1217,$912.14,($534.19),$134.90,1.7,1.5,($17012.50),-25.59%
#1#=9#2#=54#3#=135,$152475.00,46.27%,1208,$911.43,($550.10),$126.22,1.7,1.4,($17937.50),-27.51%
#1#=9#2#=54#3#=140,$151100.00,46.71%,1201,$904.12,($556.43),$125.81,1.6,1.4,($16962.50),-28.94%
#1#=9#2#=54#3#=145,$145725.00,46.63%,1201,$906.07,($564.24),$121.34,1.6,1.4,($16962.50),-33.50%
#1#=9#2#=54#3#=150,$147975.00,46.62%,1197,$920.72,($572.44),$123.62,1.6,1.4,($16625.00),-38.82%
#1#=12#2#=30#3#=75,$123662.50,41.83%,1420,$890.24,($490.48),$87.09,1.8,1.3,($15462.50),-35.52%
#1#=12#2#=30#3#=80,$127950.00,42.47%,1394,$890.98,($498.15),$91.79,1.8,1.3,($15512.50),-32.15%
#1#=12#2#=30#3#=85,$130000.00,42.65%,1374,$893.52,($499.49),$94.61,1.8,1.3,($15012.50),-28.75%
#1#=12#2#=30#3#=90,$128625.00,43.24%,1353,$884.15,($505.99),$95.07,1.7,1.3,($15050.00),-29.54%
#1#=12#2#=30#3#=95,$141425.00,43.89%,1333,$886.99,($504.63),$106.10,1.8,1.4,($14375.00),-29.03%
#1#=12#2#=30#3#=100,$141050.00,43.49%,1322,$911.46,($512.77),$106.69,1.8,1.4,($15775.00),-32.41%
#1#=12#2#=30#3#=105,$139612.50,43.79%,1313,$913.57,($522.61),$106.33,1.7,1.4,($15400.00),-35.44%
#1#=12#2#=30#3#=110,$142262.50,43.78%,1295,$928.15,($527.47),$109.86,1.8,1.4,($15025.00),-39.07%
#1#=12#2#=30#3#=115,$150212.50,44.02%,1279,$934.13,($524.72),$117.45,1.8,1.4,($14637.50),-41.87%
#1#=12#2#=30#3#=120,$150600.00,43.56%,1274,$951.24,($524.81),$118.21,1.8,1.4,($13225.00),-37.79%
#1#=12#2#=30#3#=125,$149375.00,43.84%,1266,$953.00,($533.81),$117.99,1.8,1.4,($13462.50),-41.01%
#1#=12#2#=30#3#=130,$146762.50,44.05%,1260,$950.99,($540.48),$116.48,1.8,1.4,($13575.00),-39.37%
#1#=12#2#=30#3#=135,$138275.00,43.75%,1255,$959.72,($550.44),$110.18,1.7,1.4,($14725.00),-42.61%
#1#=12#2#=30#3#=140,$139787.50,44.22%,1246,$956.33,($557.05),$112.19,1.7,1.4,($13962.50),-43.76%
#1#=12#2#=30#3#=145,$135900.00,43.95%,1247,$969.96,($566.01),$108.98,1.7,1.3,($15000.00),-51.64%
#1#=12#2#=30#3#=150,$139112.50,43.93%,1243,$987.84,($574.25),$111.92,1.7,1.3,($15450.00),-54.33%
#1#=12#2#=34#3#=75,$131712.50,42.55%,1403,$886.10,($492.91),$93.88,1.8,1.3,($14900.00),-36.33%
#1#=12#2#=34#3#=80,$137175.00,42.90%,1380,$895.00,($498.30),$99.40,1.8,1.3,($14712.50),-34.29%
#1#=12#2#=34#3#=85,$141712.50,43.50%,1361,$889.99,($500.86),$104.12,1.8,1.4,($15262.50),-32.05%
#1#=12#2#=34#3#=90,$143675.00,44.06%,1339,$881.44,($502.50),$107.30,1.8,1.4,($15850.00),-28.33%
#1#=12#2#=34#3#=95,$154925.00,44.77%,1320,$884.92,($504.89),$117.37,1.8,1.4,($15050.00),-29.18%
#1#=12#2#=34#3#=100,$158912.50,44.56%,1306,$909.79,($511.86),$121.68,1.8,1.4,($15812.50),-27.81%
#1#=12#2#=34#3#=105,$153537.50,44.64%,1297,$911.31,($521.05),$118.38,1.7,1.4,($16012.50),-34.20%
#1#=12#2#=34#3#=110,$158212.50,44.53%,1280,$929.69,($523.54),$123.60,1.8,1.4,($15812.50),-38.72%
#1#=12#2#=34#3#=115,$161850.00,44.62%,1264,$933.51,($520.93),$128.05,1.8,1.4,($15100.00),-41.35%
#1#=12#2#=34#3#=120,$161137.50,44.37%,1260,$942.24,($521.50),$127.89,1.8,1.4,($14375.00),-37.04%
#1#=12#2#=34#3#=125,$159075.00,44.65%,1252,$940.81,($529.35),$127.06,1.8,1.4,($14487.50),-38.59%
#1#=12#2#=34#3#=130,$157875.00,44.68%,1251,$945.62,($535.73),$126.20,1.8,1.4,($14600.00),-39.96%
#1#=12#2#=34#3#=135,$146412.50,44.31%,1248,$952.92,($547.55),$117.32,1.7,1.4,($15700.00),-43.30%
#1#=12#2#=34#3#=140,$146275.00,44.84%,1240,$947.41,($556.27),$117.96,1.7,1.4,($15212.50),-45.41%
#1#=12#2#=34#3#=145,$141975.00,44.52%,1242,$959.76,($564.26),$114.31,1.7,1.4,($16275.00),-56.68%
#1#=12#2#=34#3#=150,$145437.50,44.67%,1238,$966.73,($568.12),$117.48,1.7,1.4,($17187.50),-59.68%
#1#=12#2#=38#3#=75,$146650.00,43.77%,1373,$874.88,($491.13),$106.81,1.8,1.4,($15487.50),-27.37%
#1#=12#2#=38#3#=80,$148937.50,43.97%,1351,$883.94,($496.86),$110.24,1.8,1.4,($15362.50),-24.42%
#1#=12#2#=38#3#=85,$150712.50,44.53%,1334,$877.59,($500.78),$112.98,1.8,1.4,($15912.50),-21.43%
#1#=12#2#=38#3#=90,$153975.00,45.05%,1312,$872.76,($501.84),$117.36,1.7,1.4,($16312.50),-21.53%
#1#=12#2#=38#3#=95,$159600.00,45.67%,1292,$869.85,($503.72),$123.53,1.7,1.5,($15475.00),-22.73%
#1#=12#2#=38#3#=100,$161187.50,45.58%,1279,$890.57,($514.39),$126.03,1.7,1.5,($16287.50),-22.87%
#1#=12#2#=38#3#=105,$157900.00,45.82%,1268,$889.93,($522.78),$124.53,1.7,1.4,($16487.50),-23.35%
#1#=12#2#=38#3#=110,$160762.50,45.65%,1253,$908.30,($526.85),$128.30,1.7,1.4,($16512.50),-23.35%
#1#=12#2#=38#3#=115,$164812.50,45.84%,1237,$913.01,($526.66),$133.24,1.7,1.5,($15837.50),-22.67%
#1#=12#2#=38#3#=120,$159725.00,45.42%,1233,$921.12,($529.12),$129.54,1.7,1.4,($14975.00),-22.68%
#1#=12#2#=38#3#=125,$160750.00,45.55%,1225,$928.18,($535.49),$131.22,1.7,1.5,($15337.50),-22.91%
#1#=12#2#=38#3#=130,$161950.00,45.55%,1225,$940.57,($544.06),$132.20,1.7,1.4,($15600.00),-23.88%
#1#=12#2#=38#3#=135,$150112.50,45.10%,1224,$950.54,($557.42),$122.64,1.7,1.4,($16787.50),-26.63%
#1#=12#2#=38#3#=140,$147387.50,45.57%,1218,$943.42,($567.44),$121.01,1.7,1.4,($16225.00),-28.36%
#1#=12#2#=38#3#=145,$144512.50,45.63%,1214,$943.34,($572.88),$119.04,1.6,1.4,($16287.50),-31.36%
#1#=12#2#=38#3#=150,$147500.00,45.62%,1210,$955.41,($577.34),$121.90,1.7,1.4,($15950.00),-34.85%
#1#=12#2#=42#3#=75,$153687.50,44.47%,1347,$870.89,($491.95),$114.10,1.8,1.4,($12125.00),-21.81%
#1#=12#2#=42#3#=80,$154687.50,44.70%,1329,$878.62,($499.61),$116.39,1.8,1.4,($12325.00),-20.99%
#1#=12#2#=42#3#=85,$157912.50,45.27%,1310,$875.51,($503.85),$120.54,1.7,1.4,($13025.00),-20.59%
#1#=12#2#=42#3#=90,$164000.00,46.15%,1285,$867.94,($506.77),$127.63,1.7,1.5,($13475.00),-17.40%
#1#=12#2#=42#3#=95,$168762.50,46.68%,1266,$867.03,($509.11),$133.30,1.7,1.5,($12487.50),-17.46%
#1#=12#2#=42#3#=100,$169075.00,46.31%,1259,$888.96,($516.55),$134.29,1.7,1.5,($13312.50),-17.57%
#1#=12#2#=42#3#=105,$168662.50,46.59%,1247,$891.85,($524.77),$135.25,1.7,1.5,($13512.50),-18.05%
#1#=12#2#=42#3#=110,$168575.00,46.56%,1235,$903.00,($531.29),$136.50,1.7,1.5,($13537.50),-18.05%
#1#=12#2#=42#3#=115,$170500.00,46.60%,1221,$909.80,($532.48),$139.64,1.7,1.5,($12862.50),-17.42%
#1#=12#2#=42#3#=120,$165237.50,46.17%,1215,$917.42,($534.31),$136.00,1.7,1.5,($11825.00),-17.56%
#1#=12#2#=42#3#=125,$164175.00,46.36%,1208,$916.74,($538.89),$135.91,1.7,1.5,($12187.50),-18.45%
#1#=12#2#=42#3#=130,$164587.50,46.72%,1203,$914.64,($545.14),$136.81,1.7,1.5,($12412.50),-18.98%
#1#=12#2#=42#3#=135,$151675.00,46.14%,1205,$925.25,($558.96),$125.87,1.7,1.4,($13837.50),-20.58%
#1#=12#2#=42#3#=140,$148687.50,46.54%,1201,$915.16,($565.25),$123.80,1.6,1.4,($13125.00),-21.37%
#1#=12#2#=42#3#=145,$145237.50,46.62%,1197,$914.92,($571.65),$121.33,1.6,1.4,($13250.00),-22.77%
#1#=12#2#=42#3#=150,$147787.50,46.61%,1193,$928.51,($578.43),$123.88,1.6,1.4,($12912.50),-27.11%
#1#=12#2#=46#3#=75,$155950.00,44.07%,1350,$881.49,($488.13),$115.52,1.8,1.4,($14450.00),-17.93%
#1#=12#2#=46#3#=80,$157275.00,44.41%,1333,$886.61,($496.09),$117.99,1.8,1.4,($14600.00),-17.53%
#1#=12#2#=46#3#=85,$159387.50,45.16%,1311,$879.29,($502.29),$121.58,1.8,1.4,($14987.50),-17.40%
#1#=12#2#=46#3#=90,$162025.00,45.77%,1289,$871.80,($504.06),$125.70,1.7,1.5,($15625.00),-18.47%
#1#=12#2#=46#3#=95,$165012.50,46.22%,1270,$871.49,($507.39),$129.93,1.7,1.5,($14350.00),-17.56%
#1#=12#2#=46#3#=100,$166012.50,46.14%,1257,$888.60,($516.06),$132.07,1.7,1.5,($15887.50),-17.67%
#1#=12#2#=46#3#=105,$167000.00,46.59%,1247,$890.47,($526.07),$133.92,1.7,1.5,($15212.50),-18.14%
#1#=12#2#=46#3#=110,$165537.50,46.60%,1236,$897.18,($532.18),$133.93,1.7,1.5,($15237.50),-18.14%
#1#=12#2#=46#3#=115,$165950.00,46.81%,1222,$900.52,($537.15),$135.80,1.7,1.5,($14587.50),-16.61%
#1#=12#2#=46#3#=120,$163812.50,46.66%,1213,$907.62,($540.80),$135.05,1.7,1.5,($13100.00),-16.08%
#1#=12#2#=46#3#=125,$163825.00,46.81%,1207,$909.20,($544.98),$135.73,1.7,1.5,($13375.00),-16.14%
#1#=12#2#=46#3#=130,$164825.00,47.34%,1202,$903.62,($551.88),$137.13,1.6,1.5,($14225.00),-16.94%
#1#=12#2#=46#3#=135,$151412.50,46.88%,1203,$908.07,($564.53),$125.86,1.6,1.4,($15225.00),-18.26%
#1#=12#2#=46#3#=140,$146925.00,47.08%,1198,$899.42,($568.38),$122.64,1.6,1.4,($13287.50),-21.01%
#1#=12#2#=46#3#=145,$143000.00,47.07%,1194,$902.31,($576.11),$119.77,1.6,1.4,($13287.50),-22.76%
#1#=12#2#=46#3#=150,$144250.00,46.89%,1190,$919.80,($583.86),$121.22,1.6,1.4,($13300.00),-30.53%
#1#=12#2#=50#3#=75,$143587.50,43.64%,1345,$876.66,($489.46),$106.76,1.8,1.4,($17800.00),-22.54%
#1#=12#2#=50#3#=80,$144700.00,44.08%,1327,$881.22,($499.75),$109.04,1.8,1.4,($17950.00),-22.57%
#1#=12#2#=50#3#=85,$149975.00,45.13%,1303,$873.11,($508.27),$115.10,1.7,1.4,($17675.00),-20.88%
#1#=12#2#=50#3#=90,$153962.50,45.59%,1281,$872.28,($509.97),$120.19,1.7,1.4,($18312.50),-21.87%
#1#=12#2#=50#3#=95,$158675.00,46.12%,1262,$866.84,($508.57),$125.73,1.7,1.5,($17075.00),-19.49%
#1#=12#2#=50#3#=100,$160825.00,45.89%,1253,$886.52,($514.64),$128.35,1.7,1.5,($17575.00),-18.91%
#1#=12#2#=50#3#=105,$161237.50,46.50%,1243,$886.87,($528.38),$129.72,1.7,1.5,($17775.00),-18.41%
#1#=12#2#=50#3#=110,$161962.50,46.51%,1232,$898.58,($535.55),$131.46,1.7,1.5,($17800.00),-18.37%
#1#=12#2#=50#3#=115,$163887.50,46.96%,1218,$895.96,($539.63),$134.55,1.7,1.5,($16887.50),-16.55%
#1#=12#2#=50#3#=120,$160512.50,46.90%,1209,$898.26,($543.30),$132.76,1.7,1.5,($14925.00),-14.71%
#1#=12#2#=50#3#=125,$157362.50,46.88%,1203,$899.05,($547.26),$130.81,1.6,1.4,($15187.50),-15.11%
#1#=12#2#=50#3#=130,$158262.50,47.25%,1198,$898.98,($554.69),$132.11,1.6,1.5,($15375.00),-15.37%
#1#=12#2#=50#3#=135,$148850.00,46.86%,1193,$906.04,($564.08),$124.77,1.6,1.4,($17075.00),-18.08%
#1#=12#2#=50#3#=140,$149025.00,47.30%,1186,$897.59,($567.24),$125.65,1.6,1.4,($16075.00),-17.58%
#1#=12#2#=50#3#=145,$144862.50,47.30%,1184,$897.81,($573.58),$122.35,1.6,1.4,($16150.00),-18.87%
#1#=12#2#=50#3#=150,$146487.50,47.37%,1180,$909.53,($582.83),$124.14,1.6,1.4,($15812.50),-22.24%
#1#=12#2#=54#3#=75,$134137.50,44.41%,1333,$863.70,($509.01),$100.63,1.7,1.4,($19587.50),-26.84%
#1#=12#2#=54#3#=80,$136475.00,44.83%,1316,$867.48,($516.99),$103.70,1.7,1.4,($19787.50),-26.30%
#1#=12#2#=54#3#=85,$145612.50,45.90%,1294,$863.47,($524.70),$112.53,1.6,1.4,($18725.00),-23.43%
#1#=12#2#=54#3#=90,$150050.00,46.43%,1273,$861.48,($526.52),$117.87,1.6,1.4,($19300.00),-24.02%
#1#=12#2#=54#3#=95,$156425.00,46.93%,1253,$856.68,($522.26),$124.84,1.6,1.5,($18087.50),-21.00%
#1#=12#2#=54#3#=100,$158625.00,46.83%,1245,$872.77,($529.00),$127.41,1.6,1.5,($18562.50),-20.43%
#1#=12#2#=54#3#=105,$157662.50,47.13%,1235,$878.14,($541.21),$127.66,1.6,1.4,($18762.50),-19.88%
#1#=12#2#=54#3#=110,$157837.50,46.90%,1226,$892.70,($546.03),$128.74,1.6,1.4,($18787.50),-19.86%
#1#=12#2#=54#3#=115,$158325.00,47.07%,1211,$894.78,($548.67),$130.74,1.6,1.5,($17787.50),-18.13%
#1#=12#2#=54#3#=120,$153887.50,47.01%,1204,$895.25,($553.02),$127.81,1.6,1.4,($16737.50),-17.28%
#1#=12#2#=54#3#=125,$153437.50,47.16%,1198,$895.58,($556.97),$128.08,1.6,1.4,($16950.00),-17.54%
#1#=12#2#=54#3#=130,$154712.50,47.65%,1192,$888.25,($560.60),$129.79,1.6,1.4,($17137.50),-17.54%
#1#=12#2#=54#3#=135,$147475.00,47.64%,1184,$887.70,($569.66),$124.56,1.6,1.4,($18137.50),-19.37%
#1#=12#2#=54#3#=140,$145950.00,47.92%,1177,$879.99,($571.55),$124.00,1.5,1.4,($17062.50),-18.83%
#1#=12#2#=54#3#=145,$144162.50,47.92%,1177,$880.19,($574.65),$122.48,1.5,1.4,($17062.50),-20.53%
#1#=12#2#=54#3#=150,$147362.50,47.83%,1173,$897.42,($581.84),$125.63,1.5,1.4,($16475.00),-23.40%
#1#=15#2#=30#3#=75,$130675.00,42.72%,1395,$879.70,($492.65),$93.67,1.8,1.3,($17287.50),-30.39%
#1#=15#2#=30#3#=80,$130862.50,42.95%,1376,$890.52,($503.74),$95.10,1.8,1.3,($16787.50),-28.33%
#1#=15#2#=30#3#=85,$133137.50,43.06%,1361,$896.18,($505.84),$97.82,1.8,1.3,($17962.50),-27.39%
#1#=15#2#=30#3#=90,$137012.50,43.67%,1335,$891.66,($509.08),$102.63,1.8,1.4,($17875.00),-27.04%
#1#=15#2#=30#3#=95,$149812.50,44.19%,1317,$896.22,($505.83),$113.75,1.8,1.4,($16875.00),-28.03%
#1#=15#2#=30#3#=100,$151062.50,43.83%,1305,$919.49,($511.44),$115.76,1.8,1.4,($18187.50),-28.37%
#1#=15#2#=30#3#=105,$148062.50,44.02%,1295,$921.49,($520.26),$114.33,1.8,1.4,($17662.50),-33.33%
#1#=15#2#=30#3#=110,$149575.00,43.98%,1280,$935.83,($526.22),$116.86,1.8,1.4,($17125.00),-37.21%
#1#=15#2#=30#3#=115,$154700.00,44.03%,1265,$949.42,($528.43),$122.29,1.8,1.4,($16925.00),-39.11%
#1#=15#2#=30#3#=120,$153512.50,43.81%,1260,$956.41,($528.85),$121.84,1.8,1.4,($15600.00),-34.25%
#1#=15#2#=30#3#=125,$151475.00,44.01%,1252,$956.42,($535.68),$120.99,1.8,1.4,($15637.50),-36.28%
#1#=15#2#=30#3#=130,$151837.50,44.26%,1245,$959.03,($542.63),$121.96,1.8,1.4,($15962.50),-34.86%
#1#=15#2#=30#3#=135,$140762.50,44.03%,1240,$964.13,($555.69),$113.52,1.7,1.4,($17675.00),-43.10%
#1#=15#2#=30#3#=140,$139512.50,44.65%,1234,$953.15,($564.68),$113.06,1.7,1.4,($15125.00),-45.23%
#1#=15#2#=30#3#=145,$135937.50,44.44%,1233,$966.17,($574.49),$110.25,1.7,1.3,($17025.00),-51.37%
#1#=15#2#=30#3#=150,$141012.50,44.50%,1227,$979.58,($578.32),$114.92,1.7,1.4,($16787.50),-49.16%
#1#=15#2#=34#3#=75,$139362.50,43.40%,1371,$881.13,($496.02),$101.65,1.8,1.4,($15825.00),-28.63%
#1#=15#2#=34#3#=80,$139925.00,43.61%,1353,$886.67,($502.24),$103.42,1.8,1.4,($15650.00),-24.00%
#1#=15#2#=34#3#=85,$140600.00,44.09%,1336,$882.77,($507.83),$105.24,1.7,1.4,($16550.00),-23.09%
#1#=15#2#=34#3#=90,$146462.50,44.85%,1311,$875.47,($509.42),$111.72,1.7,1.4,($16475.00),-22.39%
#1#=15#2#=34#3#=95,$158812.50,45.32%,1293,$880.99,($505.59),$122.82,1.7,1.4,($15762.50),-22.63%
#1#=15#2#=34#3#=100,$157337.50,45.01%,1282,$905.63,($518.03),$122.73,1.7,1.4,($16587.50),-23.11%
#1#=15#2#=34#3#=105,$155437.50,45.16%,1271,$910.00,($526.40),$122.30,1.7,1.4,($16862.50),-25.95%
#1#=15#2#=34#3#=110,$157600.00,45.27%,1257,$919.09,($531.05),$125.38,1.7,1.4,($16812.50),-25.66%
#1#=15#2#=34#3#=115,$162212.50,45.45%,1241,$925.60,($531.50),$130.71,1.7,1.5,($16012.50),-27.84%
#1#=15#2#=34#3#=120,$162012.50,45.19%,1237,$931.24,($528.83),$130.97,1.8,1.5,($14012.50),-27.32%
#1#=15#2#=34#3#=125,$160512.50,45.28%,1230,$932.09,($532.93),$130.50,1.7,1.4,($14087.50),-29.84%
#1#=15#2#=34#3#=130,$160450.00,45.47%,1225,$936.40,($540.61),$130.98,1.7,1.4,($14425.00),-28.43%
#1#=15#2#=34#3#=135,$148262.50,45.17%,1222,$940.04,($553.19),$121.33,1.7,1.4,($14987.50),-34.36%
#1#=15#2#=34#3#=140,$147100.00,45.72%,1214,$932.30,($561.95),$121.17,1.7,1.4,($14537.50),-37.02%
#1#=15#2#=34#3#=145,$142512.50,45.71%,1212,$934.48,($570.19),$117.58,1.6,1.4,($15250.00),-40.61%
#1#=15#2#=34#3#=150,$149862.50,45.53%,1208,$962.09,($576.42),$124.06,1.7,1.4,($14987.50),-38.39%
#1#=15#2#=38#3#=75,$138912.50,43.50%,1347,$886.86,($500.38),$103.13,1.8,1.4,($15662.50),-23.52%
#1#=15#2#=38#3#=80,$139487.50,43.80%,1331,$887.46,($505.21),$104.80,1.8,1.4,($15862.50),-22.63%
#1#=15#2#=38#3#=85,$144487.50,44.61%,1309,$883.67,($512.52),$110.38,1.7,1.4,($16625.00),-23.63%
#1#=15#2#=38#3#=90,$152900.00,45.33%,1284,$882.28,($513.66),$119.08,1.7,1.4,($16700.00),-22.15%
#1#=15#2#=38#3#=95,$165050.00,45.73%,1264,$891.11,($510.22),$130.58,1.7,1.5,($15025.00),-22.67%
#1#=15#2#=38#3#=100,$166887.50,45.57%,1253,$912.83,($519.56),$133.19,1.8,1.5,($15812.50),-23.13%
#1#=15#2#=38#3#=105,$167637.50,45.97%,1240,$914.61,($527.89),$135.19,1.7,1.5,($16012.50),-24.68%
#1#=15#2#=38#3#=110,$164075.00,45.90%,1233,$921.25,($535.76),$133.07,1.7,1.5,($16037.50),-24.50%
#1#=15#2#=38#3#=115,$163150.00,45.86%,1219,$925.69,($536.84),$133.84,1.7,1.5,($15212.50),-25.32%
#1#=15#2#=38#3#=120,$163387.50,45.75%,1211,$930.78,($536.17),$134.92,1.7,1.5,($13512.50),-20.60%
#1#=15#2#=38#3#=125,$160887.50,45.89%,1205,$929.54,($541.64),$133.52,1.7,1.5,($13975.00),-23.23%
#1#=15#2#=38#3#=130,$161225.00,46.22%,1203,$928.69,($548.88),$134.02,1.7,1.5,($14162.50),-24.21%
#1#=15#2#=38#3#=135,$150450.00,45.92%,1202,$932.34,($560.31),$125.17,1.7,1.4,($14912.50),-29.56%
#1#=15#2#=38#3#=140,$150625.00,46.15%,1196,$934.87,($567.43),$125.94,1.6,1.4,($14937.50),-31.28%
#1#=15#2#=38#3#=145,$147400.00,46.07%,1196,$933.42,($568.86),$123.24,1.6,1.4,($15675.00),-34.13%
#1#=15#2#=38#3#=150,$150275.00,46.13%,1190,$947.47,($577.05),$126.28,1.6,1.4,($15412.50),-34.13%
#1#=15#2#=42#3#=75,$135337.50,44.54%,1329,$858.87,($506.26),$101.83,1.7,1.4,($15012.50),-26.89%
#1#=15#2#=42#3#=80,$139675.00,44.84%,1307,$868.90,($512.48),$106.87,1.7,1.4,($15012.50),-25.49%
#1#=15#2#=42#3#=85,$143762.50,45.84%,1285,$858.55,($520.01),$111.88,1.7,1.4,($15012.50),-24.49%
#1#=15#2#=42#3#=90,$153487.50,46.86%,1259,$851.78,($521.77),$121.91,1.6,1.4,($15012.50),-23.81%
#1#=15#2#=42#3#=95,$161887.50,46.86%,1242,$863.87,($516.50),$130.34,1.7,1.5,($12862.50),-16.44%
#1#=15#2#=42#3#=100,$161175.00,46.83%,1232,$877.04,($526.53),$130.82,1.7,1.5,($13637.50),-16.42%
#1#=15#2#=42#3#=105,$163600.00,47.42%,1219,$879.24,($537.60),$134.21,1.6,1.5,($13837.50),-16.18%
#1#=15#2#=42#3#=110,$163700.00,47.27%,1210,$891.15,($542.38),$135.29,1.6,1.5,($13862.50),-15.98%
#1#=15#2#=42#3#=115,$166675.00,47.36%,1195,$898.19,($543.24),$139.48,1.7,1.5,($13125.00),-15.01%
#1#=15#2#=42#3#=120,$166637.50,47.31%,1190,$901.62,($543.82),$140.03,1.7,1.5,($11350.00),-15.62%
#1#=15#2#=42#3#=125,$166750.00,47.47%,1184,$903.00,($547.81),$140.84,1.6,1.5,($11700.00),-18.20%
#1#=15#2#=42#3#=130,$169625.00,47.96%,1176,$903.90,($555.84),$144.24,1.6,1.5,($12337.50),-18.33%
#1#=15#2#=42#3#=135,$156175.00,47.49%,1173,$907.09,($566.68),$133.14,1.6,1.4,($12800.00),-19.93%
#1#=15#2#=42#3#=140,$151212.50,47.60%,1168,$902.86,($573.16),$129.46,1.6,1.4,($12337.50),-20.66%
#1#=15#2#=42#3#=145,$148900.00,47.60%,1166,$901.89,($575.53),$127.70,1.6,1.4,($12337.50),-21.31%
#1#=15#2#=42#3#=150,$152375.00,47.72%,1161,$917.78,($586.61),$131.24,1.6,1.4,($16162.50),-19.88%
#1#=15#2#=46#3#=75,$141425.00,45.39%,1313,$849.18,($508.63),$107.71,1.7,1.4,($15687.50),-24.04%
#1#=15#2#=46#3#=80,$143300.00,45.83%,1294,$856.28,($519.94),$110.74,1.6,1.4,($15475.00),-23.90%
#1#=15#2#=46#3#=85,$150200.00,46.90%,1273,$846.78,($525.63),$117.99,1.6,1.4,($15712.50),-22.83%
#1#=15#2#=46#3#=90,$157575.00,47.72%,1249,$840.06,($525.42),$126.16,1.6,1.5,($15787.50),-22.65%
#1#=15#2#=46#3#=95,$164250.00,48.13%,1230,$840.88,($522.81),$133.54,1.6,1.5,($14400.00),-17.76%
#1#=15#2#=46#3#=100,$164750.00,47.91%,1223,$860.92,($533.36),$134.71,1.6,1.5,($15050.00),-18.63%
#1#=15#2#=46#3#=105,$167337.50,48.43%,1210,$863.42,($542.67),$138.30,1.6,1.5,($15250.00),-18.33%
#1#=15#2#=46#3#=110,$166200.00,48.21%,1201,$875.69,($547.95),$138.38,1.6,1.5,($15275.00),-18.04%
#1#=15#2#=46#3#=115,$167500.00,47.98%,1190,$887.76,($548.32),$140.76,1.6,1.5,($14500.00),-16.86%
#1#=15#2#=46#3#=120,$165775.00,47.81%,1186,$889.09,($546.59),$139.78,1.6,1.5,($14100.00),-14.73%
#1#=15#2#=46#3#=125,$164787.50,47.88%,1182,$890.48,($550.69),$139.41,1.6,1.5,($14450.00),-15.22%
#1#=15#2#=46#3#=130,$166262.50,48.34%,1177,$888.55,($558.10),$141.26,1.6,1.5,($13750.00),-15.48%
#1#=15#2#=46#3#=135,$153225.00,48.12%,1172,$888.28,($571.98),$130.74,1.6,1.4,($16175.00),-17.85%
#1#=15#2#=46#3#=140,$148875.00,48.08%,1169,$885.30,($574.40),$127.35,1.5,1.4,($14750.00),-19.07%
#1#=15#2#=46#3#=145,$147612.50,48.07%,1165,$887.63,($577.62),$126.71,1.5,1.4,($14825.00),-20.13%
#1#=15#2#=46#3#=150,$150662.50,48.19%,1162,$900.83,($587.71),$129.66,1.5,1.4,($16800.00),-20.13%
#1#=15#2#=50#3#=75,$126725.00,45.45%,1307,$846.06,($527.12),$96.96,1.6,1.3,($18812.50),-29.14%
#1#=15#2#=50#3#=80,$129612.50,45.86%,1291,$853.95,($537.80),$100.40,1.6,1.3,($19000.00),-29.23%
#1#=15#2#=50#3#=85,$136175.00,46.97%,1271,$842.29,($544.03),$107.14,1.5,1.4,($17937.50),-27.86%
#1#=15#2#=50#3#=90,$145075.00,47.95%,1243,$836.03,($545.90),$116.71,1.5,1.4,($18012.50),-27.26%
#1#=15#2#=50#3#=95,$150200.00,48.21%,1226,$835.15,($540.75),$122.51,1.5,1.4,($16825.00),-21.69%
#1#=15#2#=50#3#=100,$153837.50,48.19%,1218,$851.77,($548.57),$126.30,1.6,1.4,($17400.00),-20.68%
#1#=15#2#=50#3#=105,$155250.00,48.55%,1209,$854.88,($557.17),$128.41,1.5,1.4,($17600.00),-20.10%
#1#=15#2#=50#3#=110,$154850.00,48.71%,1197,$859.61,($564.01),$129.37,1.5,1.4,($17625.00),-19.76%
#1#=15#2#=50#3#=115,$154962.50,48.53%,1187,$872.76,($569.15),$130.55,1.5,1.4,($16800.00),-18.19%
#1#=15#2#=50#3#=120,$152475.00,48.40%,1184,$871.88,($568.11),$128.78,1.5,1.4,($16875.00),-18.00%
#1#=15#2#=50#3#=125,$151225.00,48.47%,1178,$872.48,($571.60),$128.37,1.5,1.4,($17075.00),-18.72%
#1#=15#2#=50#3#=130,$154937.50,48.72%,1172,$869.48,($568.28),$132.20,1.5,1.5,($16375.00),-17.41%
#1#=15#2#=50#3#=135,$143425.00,48.63%,1164,$869.30,($582.94),$123.22,1.5,1.4,($17400.00),-19.83%
#1#=15#2#=50#3#=140,$141462.50,48.75%,1159,$863.45,($583.14),$122.06,1.5,1.4,($16912.50),-19.14%
#1#=15#2#=50#3#=145,$141275.00,48.70%,1156,$867.45,($585.33),$122.21,1.5,1.4,($16987.50),-19.51%
#1#=15#2#=50#3#=150,$143725.00,48.44%,1154,$884.70,($589.62),$124.55,1.5,1.4,($16575.00),-20.74%
#1#=15#2#=54#3#=75,$125287.50,45.99%,1298,$830.13,($528.25),$96.52,1.6,1.3,($17650.00),-26.83%
#1#=15#2#=54#3#=80,$127712.50,46.18%,1282,$836.97,($533.01),$99.62,1.6,1.3,($17850.00),-27.15%
#1#=15#2#=54#3#=85,$133437.50,47.08%,1266,$828.59,($537.91),$105.40,1.5,1.4,($17900.00),-25.26%
#1#=15#2#=54#3#=90,$141475.00,47.79%,1243,$829.50,($541.22),$113.82,1.5,1.4,($18350.00),-25.47%
#1#=15#2#=54#3#=95,$146350.00,47.96%,1226,$833.21,($538.52),$119.37,1.5,1.4,($17350.00),-22.54%
#1#=15#2#=54#3#=100,$146912.50,47.91%,1219,$846.32,($546.99),$120.52,1.5,1.4,($17825.00),-21.84%
#1#=15#2#=54#3#=105,$143887.50,48.22%,1211,$846.62,($559.07),$118.82,1.5,1.4,($18025.00),-21.86%
#1#=15#2#=54#3#=110,$147512.50,48.09%,1202,$861.70,($561.78),$122.72,1.5,1.4,($18050.00),-21.08%
#1#=15#2#=54#3#=115,$147287.50,47.82%,1192,$872.74,($562.98),$123.56,1.6,1.4,($17037.50),-18.91%
#1#=15#2#=54#3#=120,$143425.00,47.52%,1189,$876.46,($563.74),$120.63,1.6,1.4,($17112.50),-19.08%
#1#=15#2#=54#3#=125,$138187.50,47.64%,1184,$868.15,($566.85),$116.71,1.5,1.4,($17287.50),-19.79%
#1#=15#2#=54#3#=130,$143037.50,47.96%,1178,$864.47,($563.44),$121.42,1.5,1.4,($16200.00),-17.94%
#1#=15#2#=54#3#=135,$135312.50,48.03%,1168,$865.60,($577.08),$115.85,1.5,1.4,($17062.50),-19.92%
#1#=15#2#=54#3#=140,$134012.50,48.11%,1162,$862.43,($577.26),$115.33,1.5,1.4,($17200.00),-19.74%
#1#=15#2#=54#3#=145,$133925.00,47.97%,1159,$868.55,($578.75),$115.55,1.5,1.4,($17275.00),-20.19%
#1#=15#2#=54#3#=150,$134500.00,47.71%,1157,$885.37,($585.50),$116.25,1.5,1.4,($17437.50),-21.98%
#1#=18#2#=30#3#=75,$135337.50,42.98%,1375,$891.88,($499.70),$98.43,1.8,1.3,($16575.00),-30.67%
#1#=18#2#=30#3#=80,$134087.50,43.27%,1359,$894.28,($508.11),$98.67,1.8,1.3,($16825.00),-29.91%
#1#=18#2#=30#3#=85,$135975.00,43.88%,1340,$888.46,($513.88),$101.47,1.7,1.4,($17112.50),-30.43%
#1#=18#2#=30#3#=90,$146187.50,44.74%,1312,$884.92,($514.84),$111.42,1.7,1.4,($16637.50),-27.81%
#1#=18#2#=30#3#=95,$157437.50,45.29%,1296,$888.97,($513.95),$121.48,1.7,1.4,($15762.50),-28.81%
#1#=18#2#=30#3#=100,$153225.00,45.14%,1287,$895.50,($519.92),$119.06,1.7,1.4,($17125.00),-29.35%
#1#=18#2#=30#3#=105,$151450.00,45.29%,1274,$899.52,($527.37),$118.88,1.7,1.4,($16725.00),-33.12%
#1#=18#2#=30#3#=110,$148887.50,45.13%,1263,$911.34,($534.74),$117.88,1.7,1.4,($16750.00),-36.25%
#1#=18#2#=30#3#=115,$149712.50,45.04%,1250,$919.29,($535.44),$119.77,1.7,1.4,($16525.00),-39.68%
#1#=18#2#=30#3#=120,$147162.50,44.68%,1249,$925.52,($534.41),$117.82,1.7,1.4,($17062.50),-34.23%
#1#=18#2#=30#3#=125,$143900.00,44.81%,1243,$922.06,($538.90),$115.77,1.7,1.4,($17275.00),-37.78%
#1#=18#2#=30#3#=130,$145775.00,45.06%,1236,$925.34,($544.39),$117.94,1.7,1.4,($17600.00),-35.56%
#1#=18#2#=30#3#=135,$135625.00,44.80%,1230,$930.47,($555.32),$110.26,1.7,1.4,($18387.50),-42.06%
#1#=18#2#=30#3#=140,$137675.00,45.17%,1222,$935.62,($565.35),$112.66,1.7,1.4,($17075.00),-43.82%
#1#=18#2#=30#3#=145,$133075.00,45.01%,1222,$938.27,($569.90),$108.90,1.6,1.3,($18262.50),-47.10%
#1#=18#2#=30#3#=150,$138662.50,45.19%,1215,$949.54,($574.53),$114.13,1.7,1.4,($17650.00),-43.53%
#1#=18#2#=34#3#=75,$130525.00,43.47%,1355,$879.65,($505.99),$96.33,1.7,1.3,($16612.50),-27.51%
#1#=18#2#=34#3#=80,$129750.00,43.72%,1338,$881.90,($512.83),$96.97,1.7,1.3,($16450.00),-26.91%
#1#=18#2#=34#3#=85,$132912.50,44.55%,1320,$873.45,($520.05),$100.69,1.7,1.3,($17450.00),-27.68%
#1#=18#2#=34#3#=90,$144237.50,45.62%,1291,$866.89,($521.88),$111.73,1.7,1.4,($16687.50),-24.39%
#1#=18#2#=34#3#=95,$153512.50,45.88%,1273,$875.51,($519.29),$120.59,1.7,1.4,($15862.50),-24.72%
#1#=18#2#=34#3#=100,$153425.00,45.64%,1262,$897.03,($529.54),$121.57,1.7,1.4,($16837.50),-25.23%
#1#=18#2#=34#3#=105,$149700.00,45.69%,1252,$901.44,($538.13),$119.57,1.7,1.4,($16850.00),-27.14%
#1#=18#2#=34#3#=110,$147100.00,45.50%,1244,$911.57,($544.03),$118.25,1.7,1.4,($16875.00),-27.11%
#1#=18#2#=34#3#=115,$148062.50,45.61%,1230,$916.60,($547.31),$120.38,1.7,1.4,($16112.50),-30.34%
#1#=18#2#=34#3#=120,$145387.50,45.40%,1229,$917.59,($546.39),$118.30,1.7,1.4,($16600.00),-30.33%
#1#=18#2#=34#3#=125,$143662.50,45.47%,1225,$915.78,($548.54),$117.28,1.7,1.4,($17087.50),-33.78%
#1#=18#2#=34#3#=130,$144750.00,45.74%,1220,$916.31,($553.70),$118.65,1.7,1.4,($17887.50),-31.44%
#1#=18#2#=34#3#=135,$133012.50,45.31%,1216,$924.14,($565.70),$109.39,1.6,1.4,($18137.50),-38.74%
#1#=18#2#=34#3#=140,$133375.00,45.77%,1206,$922.31,($574.52),$110.59,1.6,1.4,($17400.00),-42.12%
#1#=18#2#=34#3#=145,$133175.00,45.77%,1206,$926.83,($578.65),$110.43,1.6,1.4,($17462.50),-44.88%
#1#=18#2#=34#3#=150,$136937.50,45.79%,1199,$943.01,($585.81),$114.21,1.6,1.4,($16750.00),-42.50%
#1#=18#2#=38#3#=75,$139075.00,44.85%,1329,$856.73,($506.87),$104.65,1.7,1.4,($16825.00),-24.77%
#1#=18#2#=38#3#=80,$136587.50,44.82%,1314,$863.90,($513.45),$103.95,1.7,1.4,($16550.00),-24.30%
#1#=18#2#=38#3#=85,$140787.50,45.55%,1293,$860.14,($519.66),$108.88,1.7,1.4,($16750.00),-23.53%
#1#=18#2#=38#3#=90,$149925.00,46.41%,1269,$856.39,($521.31),$118.14,1.6,1.4,($15312.50),-22.74%
#1#=18#2#=38#3#=95,$157950.00,46.84%,1249,$857.44,($517.55),$126.46,1.7,1.5,($13312.50),-17.36%
#1#=18#2#=38#3#=100,$157537.50,46.70%,1242,$875.52,($529.10),$126.84,1.7,1.4,($15775.00),-18.85%
#1#=18#2#=38#3#=105,$156775.00,46.99%,1230,$877.40,($537.37),$127.46,1.6,1.4,($15062.50),-17.62%
#1#=18#2#=38#3#=110,$155362.50,46.89%,1222,$883.90,($541.01),$127.14,1.6,1.4,($14787.50),-17.81%
#1#=18#2#=38#3#=115,$155225.00,46.85%,1208,$890.70,($543.48),$128.50,1.6,1.4,($14487.50),-16.78%
#1#=18#2#=38#3#=120,$149825.00,46.47%,1203,$898.43,($547.20),$124.54,1.6,1.4,($14937.50),-19.41%
#1#=18#2#=38#3#=125,$147437.50,46.66%,1198,$893.09,($550.55),$123.07,1.6,1.4,($15387.50),-23.05%
#1#=18#2#=38#3#=130,$150350.00,47.19%,1191,$891.50,($557.51),$126.24,1.6,1.4,($15250.00),-21.22%
#1#=18#2#=38#3#=135,$138375.00,46.63%,1186,$901.70,($569.14),$116.67,1.6,1.4,($15875.00),-26.38%
#1#=18#2#=38#3#=140,$136075.00,46.66%,1181,$905.06,($575.58),$115.22,1.6,1.4,($14475.00),-26.06%
#1#=18#2#=38#3#=145,$130887.50,46.74%,1181,$900.38,($582.07),$110.83,1.5,1.4,($15137.50),-28.81%
#1#=18#2#=38#3#=150,$135575.00,46.85%,1176,$915.95,($590.58),$115.28,1.6,1.4,($15962.50),-26.59%
#1#=18#2#=42#3#=75,$133387.50,45.11%,1308,$854.47,($516.36),$101.98,1.7,1.4,($18912.50),-28.20%
#1#=18#2#=42#3#=80,$125912.50,45.22%,1298,$856.49,($530.03),$97.01,1.6,1.3,($17587.50),-27.09%
#1#=18#2#=42#3#=85,$132050.00,45.78%,1280,$855.18,($531.83),$103.16,1.6,1.4,($18125.00),-25.76%
#1#=18#2#=42#3#=90,$140575.00,46.46%,1257,$852.50,($530.89),$111.83,1.6,1.4,($17312.50),-24.47%
#1#=18#2#=42#3#=95,$150350.00,46.93%,1238,$852.67,($525.19),$121.45,1.6,1.4,($15275.00),-19.98%
#1#=18#2#=42#3#=100,$145900.00,46.43%,1232,$875.17,($537.42),$118.43,1.6,1.4,($18000.00),-22.17%
#1#=18#2#=42#3#=105,$147500.00,47.01%,1221,$873.82,($547.26),$120.80,1.6,1.4,($17675.00),-21.22%
#1#=18#2#=42#3#=110,$145162.50,47.02%,1210,$880.18,($554.86),$119.97,1.6,1.4,($17700.00),-21.65%
#1#=18#2#=42#3#=115,$145625.00,46.75%,1200,$894.81,($557.69),$121.35,1.6,1.4,($17975.00),-21.14%
#1#=18#2#=42#3#=120,$142537.50,46.45%,1197,$901.37,($559.48),$119.08,1.6,1.4,($18450.00),-21.49%
#1#=18#2#=42#3#=125,$140237.50,46.77%,1193,$893.35,($564.17),$117.55,1.6,1.4,($18825.00),-22.65%
#1#=18#2#=42#3#=130,$141287.50,47.26%,1185,$885.49,($567.34),$119.23,1.6,1.4,($18062.50),-21.83%
#1#=18#2#=42#3#=135,$132275.00,47.03%,1178,$889.26,($577.52),$112.29,1.5,1.4,($18187.50),-25.83%
#1#=18#2#=42#3#=140,$129100.00,47.19%,1174,$886.73,($584.11),$109.97,1.5,1.4,($15475.00),-27.28%
#1#=18#2#=42#3#=145,$126925.00,47.10%,1172,$889.79,($587.48),$108.30,1.5,1.3,($15600.00),-28.62%
#1#=18#2#=42#3#=150,$130087.50,47.09%,1168,$905.77,($595.61),$111.38,1.5,1.4,($16075.00),-25.53%
#1#=18#2#=46#3#=75,$121362.50,45.45%,1296,$842.15,($529.93),$93.64,1.6,1.3,($19237.50),-32.49%
#1#=18#2#=46#3#=80,$116325.00,45.60%,1285,$844.77,($541.79),$90.53,1.6,1.3,($18087.50),-31.50%
#1#=18#2#=46#3#=85,$125962.50,46.54%,1270,$839.26,($544.97),$99.18,1.5,1.3,($18112.50),-28.45%
#1#=18#2#=46#3#=90,$133062.50,47.16%,1249,$836.61,($545.00),$106.54,1.5,1.4,($17362.50),-27.86%
#1#=18#2#=46#3#=95,$141900.00,47.64%,1230,$833.85,($538.41),$115.37,1.5,1.4,($15812.50),-22.31%
#1#=18#2#=46#3#=100,$139487.50,47.38%,1222,$851.27,($549.61),$114.15,1.5,1.4,($18975.00),-24.83%
#1#=18#2#=46#3#=105,$140112.50,48.06%,1211,$848.37,($562.22),$115.70,1.5,1.4,($18275.00),-23.28%
#1#=18#2#=46#3#=110,$139387.50,47.92%,1200,$856.46,($564.92),$116.16,1.5,1.4,($17625.00),-22.71%
#1#=18#2#=46#3#=115,$139712.50,47.61%,1191,$872.11,($568.55),$117.31,1.5,1.4,($17037.50),-21.36%
#1#=18#2#=46#3#=120,$135462.50,47.35%,1189,$873.40,($569.11),$113.93,1.5,1.4,($18150.00),-22.32%
#1#=18#2#=46#3#=125,$132175.00,47.55%,1186,$866.64,($573.33),$111.45,1.5,1.4,($18375.00),-23.39%
#1#=18#2#=46#3#=130,$135887.50,47.92%,1179,$865.20,($574.84),$115.26,1.5,1.4,($19512.50),-24.12%
#1#=18#2#=46#3#=135,$124775.00,47.36%,1174,$874.30,($584.69),$106.28,1.5,1.3,($19737.50),-29.50%
#1#=18#2#=46#3#=140,$120350.00,47.52%,1170,$869.76,($591.59),$102.86,1.5,1.3,($16275.00),-31.80%
#1#=18#2#=46#3#=145,$118837.50,47.55%,1165,$871.30,($595.52),$102.01,1.5,1.3,($16737.50),-33.35%
#1#=18#2#=46#3#=150,$121525.00,47.63%,1161,$883.09,($603.33),$104.67,1.5,1.3,($17100.00),-28.95%
#1#=18#2#=50#3#=75,$116112.50,46.38%,1285,$823.99,($544.25),$90.36,1.5,1.3,($18187.50),-28.43%
#1#=18#2#=50#3#=80,$112000.00,46.66%,1273,$823.67,($555.61),$87.98,1.5,1.3,($17575.00),-28.00%
#1#=18#2#=50#3#=85,$118537.50,47.54%,1260,$816.07,($560.19),$94.08,1.5,1.3,($17625.00),-26.59%
#1#=18#2#=50#3#=90,$126250.00,48.34%,1235,$813.67,($563.50),$102.23,1.4,1.4,($17700.00),-26.70%
#1#=18#2#=50#3#=95,$133712.50,48.65%,1219,$815.73,($559.13),$109.69,1.5,1.4,($16650.00),-23.21%
#1#=18#2#=50#3#=100,$138125.00,48.31%,1213,$841.83,($566.49),$113.87,1.5,1.4,($17225.00),-21.55%
#1#=18#2#=50#3#=105,$135337.50,48.84%,1202,$841.25,($582.89),$112.59,1.4,1.4,($17300.00),-21.90%
#1#=18#2#=50#3#=110,$136725.00,48.70%,1191,$852.26,($585.25),$114.80,1.5,1.4,($17325.00),-23.00%
#1#=18#2#=50#3#=115,$135125.00,48.69%,1181,$859.78,($592.82),$114.42,1.5,1.4,($16200.00),-20.75%
#1#=18#2#=50#3#=120,$133650.00,48.22%,1178,$869.06,($590.12),$113.46,1.5,1.4,($16200.00),-20.42%
#1#=18#2#=50#3#=125,$129637.50,48.43%,1175,$859.71,($593.30),$110.33,1.4,1.4,($16312.50),-21.56%
#1#=18#2#=50#3#=130,$131762.50,48.72%,1168,$856.66,($593.78),$112.81,1.4,1.4,($17225.00),-20.38%
#1#=18#2#=50#3#=135,$123262.50,48.36%,1162,$863.50,($603.38),$106.08,1.4,1.3,($17650.00),-23.16%
#1#=18#2#=50#3#=140,$122237.50,48.45%,1158,$861.74,($605.03),$105.56,1.4,1.3,($16875.00),-24.84%
#1#=18#2#=50#3#=145,$122587.50,48.35%,1154,$866.98,($606.02),$106.23,1.4,1.3,($16950.00),-27.34%
#1#=18#2#=50#3#=150,$123112.50,48.31%,1151,$879.36,($614.81),$106.96,1.4,1.3,($17287.50),-29.50%
#1#=18#2#=54#3#=75,$107850.00,45.94%,1267,$834.77,($551.81),$85.12,1.5,1.3,($19287.50),-33.13%
#1#=18#2#=54#3#=80,$105175.00,45.84%,1261,$838.82,($555.87),$83.41,1.5,1.3,($18500.00),-32.62%
#1#=18#2#=54#3#=85,$110537.50,46.55%,1246,$834.59,($560.85),$88.71,1.5,1.3,($18500.00),-30.19%
#1#=18#2#=54#3#=90,$117875.00,47.35%,1225,$830.13,($563.72),$96.22,1.5,1.3,($18212.50),-30.13%
#1#=18#2#=54#3#=95,$125450.00,47.64%,1209,$836.98,($563.43),$103.76,1.5,1.4,($19350.00),-28.34%
#1#=18#2#=54#3#=100,$130425.00,47.46%,1201,$858.99,($569.26),$108.60,1.5,1.4,($20000.00),-26.47%
#1#=18#2#=54#3#=105,$129350.00,47.69%,1193,$861.56,($578.33),$108.42,1.5,1.4,($18450.00),-23.98%
#1#=18#2#=54#3#=110,$126712.50,47.76%,1185,$859.01,($580.76),$106.93,1.5,1.4,($18775.00),-24.86%
#1#=18#2#=54#3#=115,$123362.50,47.83%,1175,$861.21,($588.32),$104.99,1.5,1.3,($18525.00),-23.48%
#1#=18#2#=54#3#=120,$122587.50,47.78%,1172,$861.85,($588.32),$104.60,1.5,1.3,($18762.50),-23.33%
#1#=18#2#=54#3#=125,$119062.50,47.86%,1168,$854.23,($588.59),$101.94,1.5,1.3,($19137.50),-24.36%
#1#=18#2#=54#3#=130,$121837.50,48.11%,1162,$855.05,($590.61),$104.85,1.4,1.3,($20087.50),-24.95%
#1#=18#2#=54#3#=135,$114487.50,47.80%,1157,$862.82,($600.41),$98.95,1.4,1.3,($20225.00),-26.63%
#1#=18#2#=54#3#=140,$114425.00,48.09%,1152,$855.57,($601.28),$99.33,1.4,1.3,($17350.00),-26.90%
#1#=18#2#=54#3#=145,$114075.00,48.00%,1148,$860.75,($603.35),$99.37,1.4,1.3,($17425.00),-29.62%
#1#=18#2#=54#3#=150,$113525.00,47.77%,1145,$876.42,($611.83),$99.15,1.4,1.3,($17700.00),-32.93%
#1#=21#2#=30#3#=75,$117675.00,43.26%,1373,$860.65,($505.20),$85.71,1.7,1.3,($17412.50),-28.98%
#1#=21#2#=30#3#=80,$117112.50,43.13%,1361,$870.74,($509.06),$86.05,1.7,1.3,($16825.00),-30.06%
#1#=21#2#=30#3#=85,$117862.50,43.60%,1344,$868.28,($515.77),$87.70,1.7,1.3,($17850.00),-30.57%
#1#=21#2#=30#3#=90,$128050.00,44.59%,1312,$865.47,($520.29),$97.60,1.7,1.3,($17437.50),-29.29%
#1#=21#2#=30#3#=95,$138450.00,44.91%,1296,$872.85,($517.58),$106.83,1.7,1.4,($16312.50),-28.78%
#1#=21#2#=30#3#=100,$139775.00,44.70%,1284,$900.15,($530.86),$108.86,1.7,1.4,($17037.50),-28.65%
#1#=21#2#=30#3#=105,$136375.00,44.78%,1275,$901.27,($537.29),$106.96,1.7,1.4,($16887.50),-34.86%
#1#=21#2#=30#3#=110,$134475.00,44.85%,1262,$906.82,($544.23),$106.56,1.7,1.4,($16912.50),-35.68%
#1#=21#2#=30#3#=115,$132550.00,44.92%,1249,$908.73,($548.33),$106.12,1.7,1.4,($16000.00),-38.61%
#1#=21#2#=30#3#=120,$134850.00,44.78%,1246,$915.01,($546.11),$108.23,1.7,1.4,($15675.00),-35.64%
#1#=21#2#=30#3#=125,$130775.00,45.04%,1241,$904.74,($549.82),$105.38,1.6,1.3,($16162.50),-39.25%
#1#=21#2#=30#3#=130,$132425.00,45.19%,1237,$906.62,($552.18),$107.05,1.6,1.4,($16900.00),-37.70%
#1#=21#2#=30#3#=135,$122575.00,44.88%,1230,$913.43,($562.89),$99.65,1.6,1.3,($18450.00),-46.95%
#1#=21#2#=30#3#=140,$118950.00,45.17%,1222,$911.23,($573.21),$97.34,1.6,1.3,($17750.00),-52.64%
#1#=21#2#=30#3#=145,$117975.00,45.18%,1224,$911.55,($575.43),$96.38,1.6,1.3,($18937.50),-55.60%
#1#=21#2#=30#3#=150,$123462.50,45.19%,1217,$926.61,($578.97),$101.45,1.6,1.3,($19112.50),-51.73%
#1#=21#2#=34#3#=75,$117037.50,43.36%,1356,$877.55,($519.48),$86.31,1.7,1.3,($17337.50),-38.04%
#1#=21#2#=34#3#=80,$116637.50,43.40%,1341,$883.98,($524.16),$86.98,1.7,1.3,($17337.50),-36.94%
#1#=21#2#=34#3#=85,$122262.50,44.17%,1320,$881.45,($531.38),$92.62,1.7,1.3,($17412.50),-36.07%
#1#=21#2#=34#3#=90,$132875.00,45.43%,1290,$874.72,($539.36),$103.00,1.6,1.3,($17412.50),-34.45%
#1#=21#2#=34#3#=95,$143962.50,45.97%,1266,$875.04,($534.08),$113.71,1.6,1.4,($14762.50),-25.61%
#1#=21#2#=34#3#=100,$145987.50,45.55%,1258,$904.65,($543.61),$116.05,1.7,1.4,($15312.50),-24.40%
#1#=21#2#=34#3#=105,$144825.00,45.83%,1246,$906.39,($552.19),$116.23,1.6,1.4,($15262.50),-25.36%
#1#=21#2#=34#3#=110,$141050.00,45.87%,1236,$910.23,($560.61),$114.12,1.6,1.4,($15437.50),-27.45%
#1#=21#2#=34#3#=115,$140625.00,45.80%,1225,$921.68,($566.92),$114.80,1.6,1.4,($14325.00),-29.77%
#1#=21#2#=34#3#=120,$140162.50,45.63%,1223,$924.33,($564.83),$114.61,1.6,1.4,($14687.50),-29.13%
#1#=21#2#=34#3#=125,$137587.50,45.98%,1218,$914.02,($568.79),$112.96,1.6,1.4,($15075.00),-32.38%
#1#=21#2#=34#3#=130,$135750.00,46.08%,1213,$912.03,($571.98),$111.91,1.6,1.4,($15475.00),-31.40%
#1#=21#2#=34#3#=135,$125537.50,45.73%,1207,$917.53,($581.58),$104.01,1.6,1.3,($16825.00),-38.23%
#1#=21#2#=34#3#=140,$121687.50,45.83%,1200,$922.66,($593.50),$101.41,1.6,1.3,($16150.00),-40.53%
#1#=21#2#=34#3#=145,$116450.00,45.87%,1199,$919.07,($599.44),$97.12,1.5,1.3,($16800.00),-42.74%
#1#=21#2#=34#3#=150,$125275.00,45.85%,1193,$942.57,($604.20),$105.01,1.6,1.3,($17175.00),-40.35%
#1#=21#2#=38#3#=75,$122337.50,44.23%,1325,$870.14,($524.44),$92.33,1.7,1.3,($18387.50),-28.38%
#1#=21#2#=38#3#=80,$118737.50,44.36%,1312,$871.13,($531.87),$90.50,1.6,1.3,($17500.00),-28.49%
#1#=21#2#=38#3#=85,$124737.50,45.05%,1292,$869.70,($537.22),$96.55,1.6,1.3,($18062.50),-27.97%
#1#=21#2#=38#3#=90,$132375.00,45.71%,1271,$867.10,($538.28),$104.15,1.6,1.4,($17737.50),-27.10%
#1#=21#2#=38#3#=95,$142675.00,46.24%,1250,$868.58,($534.77),$114.14,1.6,1.4,($16525.00),-22.51%
#1#=21#2#=38#3#=100,$140400.00,45.81%,1242,$891.76,($545.34),$113.04,1.6,1.4,($18212.50),-23.17%
#1#=21#2#=38#3#=105,$137937.50,46.14%,1231,$894.23,($558.05),$112.05,1.6,1.4,($17587.50),-22.32%
#1#=21#2#=38#3#=110,$138112.50,46.11%,1221,$904.31,($563.85),$113.11,1.6,1.4,($17700.00),-22.82%
#1#=21#2#=38#3#=115,$138250.00,45.99%,1209,$918.86,($570.65),$114.35,1.6,1.4,($17437.50),-21.66%
#1#=21#2#=38#3#=120,$135350.00,45.52%,1206,$927.76,($569.24),$112.23,1.6,1.4,($18025.00),-21.86%
#1#=21#2#=38#3#=125,$132512.50,45.80%,1201,$920.32,($573.98),$110.34,1.6,1.4,($18550.00),-23.19%
#1#=21#2#=38#3#=130,$131050.00,46.28%,1195,$908.97,($578.84),$109.67,1.6,1.4,($18937.50),-24.13%
#1#=21#2#=38#3#=135,$125850.00,46.12%,1186,$914.19,($585.62),$106.11,1.6,1.3,($19687.50),-27.56%
#1#=21#2#=38#3#=140,$118787.50,46.11%,1184,$911.93,($594.24),$100.33,1.5,1.3,($16012.50),-32.72%
#1#=21#2#=38#3#=145,$117087.50,45.98%,1183,$915.28,($595.97),$98.98,1.5,1.3,($16937.50),-36.32%
#1#=21#2#=38#3#=150,$120637.50,45.97%,1179,$930.44,($602.30),$102.32,1.5,1.3,($17612.50),-29.66%
#1#=21#2#=42#3#=75,$125550.00,44.98%,1296,$869.10,($534.55),$96.88,1.6,1.3,($17750.00),-29.92%
#1#=21#2#=42#3#=80,$120887.50,45.02%,1284,$876.02,($545.96),$94.15,1.6,1.3,($16562.50),-30.93%
#1#=21#2#=42#3#=85,$126287.50,45.72%,1273,$869.54,($549.62),$99.20,1.6,1.3,($17062.50),-29.86%
#1#=21#2#=42#3#=90,$134150.00,46.32%,1250,$870.62,($551.32),$107.32,1.6,1.4,($15312.50),-28.83%
#1#=21#2#=42#3#=95,$140100.00,46.83%,1232,$867.27,($550.10),$113.72,1.6,1.4,($15037.50),-22.30%
#1#=21#2#=42#3#=100,$136037.50,46.45%,1225,$881.94,($557.60),$111.05,1.6,1.4,($17200.00),-24.24%
#1#=21#2#=42#3#=105,$137562.50,46.95%,1214,$881.71,($566.79),$113.31,1.6,1.4,($15525.00),-21.44%
#1#=21#2#=42#3#=110,$138375.00,47.09%,1202,$886.73,($571.56),$115.12,1.6,1.4,($15550.00),-21.71%
#1#=21#2#=42#3#=115,$141962.50,46.85%,1191,$910.30,($578.18),$119.20,1.6,1.4,($14787.50),-20.62%
#1#=21#2#=42#3#=120,$137262.50,46.59%,1189,$910.11,($577.85),$115.44,1.6,1.4,($15775.00),-20.56%
#1#=21#2#=42#3#=125,$135550.00,47.09%,1185,$899.66,($584.47),$114.39,1.5,1.4,($15900.00),-22.64%
#1#=21#2#=42#3#=130,$137500.00,47.54%,1178,$894.31,($587.88),$116.72,1.5,1.4,($17125.00),-23.17%
#1#=21#2#=42#3#=135,$130350.00,47.31%,1169,$899.91,($596.27),$111.51,1.5,1.4,($17550.00),-28.03%
#1#=21#2#=42#3#=140,$123500.00,47.31%,1169,$895.07,($603.04),$105.65,1.5,1.3,($13550.00),-29.60%
#1#=21#2#=42#3#=145,$119162.50,47.00%,1168,$898.66,($604.52),$102.02,1.5,1.3,($13937.50),-30.97%
#1#=21#2#=42#3#=150,$118550.00,46.92%,1168,$910.74,($613.77),$101.50,1.5,1.3,($14075.00),-29.76%
#1#=21#2#=46#3#=75,$117475.00,45.97%,1279,$834.25,($539.89),$91.85,1.5,1.3,($21162.50),-34.27%
#1#=21#2#=46#3#=80,$113512.50,46.02%,1269,$839.70,($550.18),$89.45,1.5,1.3,($20112.50),-33.34%
#1#=21#2#=46#3#=85,$119987.50,47.09%,1255,$829.34,($557.45),$95.61,1.5,1.3,($20212.50),-31.31%
#1#=21#2#=46#3#=90,$128487.50,47.89%,1232,$827.14,($560.01),$104.29,1.5,1.4,($19300.00),-29.03%
#1#=21#2#=46#3#=95,$131825.00,48.24%,1219,$822.41,($557.45),$108.14,1.5,1.4,($17625.00),-25.05%
#1#=21#2#=46#3#=100,$131100.00,47.90%,1213,$841.80,($566.44),$108.08,1.5,1.4,($19925.00),-25.73%
#1#=21#2#=46#3#=105,$132812.50,48.22%,1205,$845.87,($574.74),$110.22,1.5,1.4,($18350.00),-23.47%
#1#=21#2#=46#3#=110,$134100.00,48.16%,1194,$856.11,($578.61),$112.31,1.5,1.4,($17475.00),-22.70%
#1#=21#2#=46#3#=115,$133637.50,48.01%,1183,$865.03,($581.63),$112.96,1.5,1.4,($16787.50),-20.87%
#1#=21#2#=46#3#=120,$132662.50,47.71%,1180,$869.36,($578.26),$112.43,1.5,1.4,($18262.50),-21.91%
#1#=21#2#=46#3#=125,$132412.50,48.00%,1175,$863.08,($579.97),$112.69,1.5,1.4,($18400.00),-22.11%
#1#=21#2#=46#3#=130,$134412.50,48.16%,1169,$864.50,($581.35),$114.98,1.5,1.4,($19625.00),-23.26%
#1#=21#2#=46#3#=135,$126262.50,47.72%,1163,$871.98,($588.30),$108.57,1.5,1.4,($20175.00),-25.68%
#1#=21#2#=46#3#=140,$129112.50,48.27%,1154,$871.07,($596.44),$111.88,1.5,1.4,($16837.50),-27.24%
#1#=21#2#=46#3#=145,$129275.00,48.14%,1153,$877.12,($597.87),$112.12,1.5,1.4,($17250.00),-29.74%
#1#=21#2#=46#3#=150,$129587.50,48.05%,1151,$889.38,($605.75),$112.59,1.5,1.4,($16850.00),-28.68%
#1#=21#2#=50#3#=75,$122125.00,46.65%,1269,$839.32,($553.55),$96.24,1.5,1.3,($20075.00),-30.91%
#1#=21#2#=50#3#=80,$121037.50,46.54%,1259,$849.89,($560.18),$96.14,1.5,1.3,($19425.00),-30.03%
#1#=21#2#=50#3#=85,$122812.50,47.11%,1246,$844.19,($565.59),$98.57,1.5,1.3,($19475.00),-28.88%
#1#=21#2#=50#3#=90,$130225.00,47.80%,1226,$843.71,($569.04),$106.22,1.5,1.4,($18775.00),-27.73%
#1#=21#2#=50#3#=95,$136050.00,48.06%,1213,$843.05,($564.21),$112.16,1.5,1.4,($18200.00),-25.09%
#1#=21#2#=50#3#=100,$138112.50,47.72%,1207,$867.38,($572.90),$114.43,1.5,1.4,($18837.50),-23.72%
#1#=21#2#=50#3#=105,$138875.00,48.20%,1195,$869.64,($584.87),$116.21,1.5,1.4,($17375.00),-21.45%
#1#=21#2#=50#3#=110,$138137.50,48.06%,1188,$872.83,($583.87),$116.28,1.5,1.4,($16625.00),-20.72%
#1#=21#2#=50#3#=115,$133375.00,47.92%,1179,$876.24,($589.09),$113.13,1.5,1.4,($16375.00),-19.83%
#1#=21#2#=50#3#=120,$131862.50,47.66%,1175,$876.58,($583.78),$112.22,1.5,1.4,($16662.50),-19.39%
#1#=21#2#=50#3#=125,$129087.50,47.78%,1170,$870.04,($584.72),$110.33,1.5,1.4,($16912.50),-19.89%
#1#=21#2#=50#3#=130,$131112.50,47.81%,1165,$872.31,($583.49),$112.54,1.5,1.4,($18150.00),-20.86%
#1#=21#2#=50#3#=135,$121400.00,47.45%,1159,$876.66,($592.39),$104.75,1.5,1.3,($19387.50),-25.27%
#1#=21#2#=50#3#=140,$121675.00,47.66%,1152,$880.12,($599.52),$105.62,1.5,1.3,($16787.50),-27.22%
#1#=21#2#=50#3#=145,$119900.00,47.31%,1152,$888.78,($600.47),$104.08,1.5,1.3,($16862.50),-29.61%
#1#=21#2#=50#3#=150,$121075.00,47.26%,1149,$902.95,($609.28),$105.37,1.5,1.3,($16362.50),-32.47%
#1#=21#2#=54#3#=75,$112775.00,46.00%,1261,$858.81,($565.84),$89.43,1.5,1.3,($15650.00),-30.82%
#1#=21#2#=54#3#=80,$110350.00,46.35%,1247,$850.89,($570.20),$88.49,1.5,1.3,($15562.50),-29.99%
#1#=21#2#=54#3#=85,$114637.50,46.81%,1237,$847.13,($571.20),$92.67,1.5,1.3,($15675.00),-27.16%
#1#=21#2#=54#3#=90,$122050.00,47.58%,1217,$844.58,($575.18),$100.29,1.5,1.3,($15662.50),-26.40%
#1#=21#2#=54#3#=95,$127737.50,47.80%,1205,$843.97,($569.77),$106.01,1.5,1.4,($14562.50),-20.41%
#1#=21#2#=54#3#=100,$127950.00,47.50%,1198,$864.32,($578.46),$106.80,1.5,1.4,($15112.50),-19.84%
#1#=21#2#=54#3#=105,$128200.00,47.73%,1188,$869.31,($587.28),$107.91,1.5,1.4,($14275.00),-18.32%
#1#=21#2#=54#3#=110,$128787.50,47.58%,1179,$875.56,($586.41),$109.23,1.5,1.4,($14450.00),-18.60%
#1#=21#2#=54#3#=115,$122925.00,47.48%,1171,$880.67,($596.30),$104.97,1.5,1.3,($13462.50),-17.17%
#1#=21#2#=54#3#=120,$122875.00,47.39%,1167,$877.85,($590.51),$105.29,1.5,1.3,($13462.50),-16.22%
#1#=21#2#=54#3#=125,$120387.50,47.55%,1163,$868.56,($590.04),$103.51,1.5,1.3,($13900.00),-18.61%
#1#=21#2#=54#3#=130,$124350.00,47.62%,1155,$874.36,($589.34),$107.66,1.5,1.3,($15000.00),-19.49%
#1#=21#2#=54#3#=135,$116125.00,47.30%,1150,$878.10,($596.64),$100.98,1.5,1.3,($15350.00),-25.33%
#1#=21#2#=54#3#=140,$119950.00,47.73%,1144,$880.95,($603.76),$104.85,1.5,1.3,($13875.00),-27.51%
#1#=21#2#=54#3#=145,$115800.00,47.42%,1145,$884.19,($605.17),$101.14,1.5,1.3,($13875.00),-28.57%
#1#=21#2#=54#3#=150,$118250.00,47.37%,1142,$905.59,($618.43),$103.55,1.5,1.3,($13787.50),-31.95%
v7 system report 15-42-125

v7_15-42-125 system report.png
v7_15-42-125 system report.png (70.1 KiB) Viewed 34228 times
v7 equity report
v7_15-42-125 equity curve.png
v7_15-42-125 equity curve.png (48.19 KiB) Viewed 34228 times
so, it seems like fairly consistent results from
12-17 fast SMA range
40-48 slow SMA range
105-140 EMA channel range

so, I could fine tune these ranges down if everyone agrees this is the area to continue testing.

what does everyone think?
all comments welcome.

User avatar
Baha
Posts: 57
Joined: Tue Jul 21, 2015 8:59 pm
Contact:

Re: Systems Workshop: "Buttonwood" E-mini daytrading system

Post by Baha » Wed Dec 30, 2015 9:50 pm

This may be slightly off topic..
Yesterday, in Zurich, I went to a charity shop called Brockenhaus where they sell second hand stuff, anything from furniture, clothing, books to old records. I don't know how to write a single line of code but I found this book there. It was 5 francs (CHF 5) I couldn't believe it!! I grabbed it and ran to the cash register. It felt really good because I have never seen a trading book in a charity shop before and I almost paid nothing for it.
Then, I went back home and went through the book and realized what others are capable of doing that I can't even get close to :(
It is my new year resolution to work harder to get better and I wish the same for everyone here in this community.
Attachments
20151230_183718.jpg
20151230_183718.jpg (1.94 MiB) Viewed 34194 times

orionsbelt
Posts: 33
Joined: Tue Jul 21, 2015 9:19 pm
Contact:

Re: Systems Workshop: "Buttonwood" E-mini daytrading system

Post by orionsbelt » Mon Jan 25, 2016 3:36 am

has anyone tested anything lately?
any results?
any other ideas of how to proceed from here?

thanks

Simon.B
Posts: 91
Joined: Thu Jul 23, 2015 8:26 pm
Contact:

Re: Systems Workshop: "Buttonwood" E-mini daytrading system

Post by Simon.B » Tue Jan 26, 2016 1:51 am

Hi orionsbelt,

Ideas...yes, ability to code, or even determining if they can be coded.....NO. :)

Simon

User avatar
Baha
Posts: 57
Joined: Tue Jul 21, 2015 8:59 pm
Contact:

Re: Systems Workshop: "Buttonwood" E-mini daytrading system

Post by Baha » Tue Jan 26, 2016 4:23 pm

Longer time frames?

orionsbelt
Posts: 33
Joined: Tue Jul 21, 2015 9:19 pm
Contact:

Re: Systems Workshop: "Buttonwood" E-mini daytrading system

Post by orionsbelt » Tue Jan 26, 2016 5:52 pm

ok

Simon, what were you thinking? let me see if I can help. maybe throw some ideas back and forth.


Baha, what time frames were you thinking? like 10, 15, 20, 30, 60 minutes? longer timeframes?
have you tested either v5 or v7 on any other timeframes and run results?


thanks


also, is there a way to chart ticks or "volume" charts or renko charts on w59? how?

User avatar
Baha
Posts: 57
Joined: Tue Jul 21, 2015 8:59 pm
Contact:

Re: Systems Workshop: "Buttonwood" E-mini daytrading system

Post by Baha » Mon Feb 01, 2016 11:56 am

Hi Orionsbelt,
I am not an expert but for ES I would give 32min, 45min, 144min a try

shwh
Posts: 15
Joined: Fri Jul 24, 2015 8:54 pm
Contact:

Re: Systems Workshop: "Buttonwood" E-mini daytrading system

Post by shwh » Thu Feb 11, 2016 7:52 pm

Since the basic premise for this thread was the Buttonwood chart, I think it's pretty interesting that the H (Dow e-mini) preceding the current debacle with the markets actually came on 5/18/15 - one day after Buttonwood's bday. Buttonwood's Natal Sun location is 27* Taurus and the Sun didn't actually reach 27* Taurus in 2015 until 5/18.

Brad Cowan in his book Pentagonal Time Cycle Theory postulates that key points in the market come when planets transit mod 72* the Buttonwood natal planets positions. I.E. take the natal location of each planet in the Buttonwood chart and calculate the (5)72* increments from the natal spot. Cowan specifically mentions transiting Saturn & Uranus conjuncting those mod 72* points. If the above isn't clear to everyone, here are the Buttonwood Natal Sun points mod 72*. We've already established that the Sun was at 27* Taurus on 5/17/1792 (and 27* Taurus is = to 57* (30* in Aries + 27* of Taurus). Add 72* to 57 = 129* or 9*Leo, + another 72* = 201* or 21*Libra, 273* = 3*Cap, 345* = 15*Pisces, and then another 72* brings you back to 57* or 27* Taurus.

Next you would want to do the above for each of the natal Buttonwood planets and then note in particular the 72* increments for Saturn & Uranus. Again Cowan thinks those are the most important barometers for the markets.

Back to May 18th of 2015, as I've already said, transiting Sun was at 27* Taurus, the natal Sun position of Buttonwood. In addition, transiting Uranus was at a mod72* of the Buttonwood natal moon (think sudden, unexpected change of feelings), and transiting Saturn was exact to a mod72* location of Natal Saturn. There are actually some more indicators on that day too but will leave them for those who are interested to identify - and again for those who are motivated to explore this process, check out the charts for the major low on 10/10/02, the important High on 10/11/07, and the equally important Low on 3/6/09.

One last thing, towards the end of the book, Cowan makes a pretty innocuous one sentence statement that this concept can be applied to intraday trading by using the daily rotation of the earth. Fwiw, I take that to mean using the transiting Asc & Mc to those natal points mod72*

Perhaps Earik can test some of these ideas, afraid I don't have that skill.

orionsbelt
Posts: 33
Joined: Tue Jul 21, 2015 9:19 pm
Contact:

Re: Systems Workshop: "Buttonwood" E-mini daytrading system

Post by orionsbelt » Wed Feb 17, 2016 5:35 pm

thanks shwh. will try to look at further when have time. won't know how to program that though.

baha, I haven't found a better time frame yet.

thanks

Post Reply

Who is online

Users browsing this forum: No registered users and 6 guests