中文字幕av无码不卡免费_蜜臀AV无码精品人妻色欲_亚洲成AV人片在线观看无码不卡_无码专区天天躁天天躁在线

您現(xiàn)在的位置:程序化交易>> 期貨公式>> (MC)multicharts>> MC知識(shí)>>正文內(nèi)容

代碼問題,求教 [MC]

  • MC用戶求助:

    只是想實(shí)現(xiàn) 止損后,反手交易,并且手?jǐn)?shù)翻倍。

    所以手?jǐn)?shù)應(yīng)該是1 2 4 8 16 32 這樣倍增。

    但現(xiàn)在總是出現(xiàn)跳躍,不知道是為什么。

    不用一定在哪個(gè)品種上測(cè)試,小品種上都可以測(cè)試,螺紋,大豆,豆粕等等都行。

    例如下圖1 2 4 然后沒有8 直接跳到了16 。

    32后 直接跳到了128

    是和模式(bar內(nèi)?)有關(guān)?還是代碼?

    ?

    全部代碼如下:

    inputs:

    ? ? ? ? ?Zhiyingx( 9999) , ? ? ?

    Zhiying( 9999) ,

    Zhisun( 5 ) ;

    ? ? ? ?

    ?

    variables:

    ? ?nn(4) ,

    ? ? ? ? ?ww(3) , ? ? ??

    ?

    var0( 0 ), var1( 0 ), var2( 0 ),Length( 20 ),Zhiyings( 20 ),TNUMSEQLOSS( 0 ),

    shoushua( 1 ), shoushu(1), yici(0)?

    ;

    ?

    yici=0;

    var0 = BollingerBand( Close, Length, 1 ) ;

    var1 = BollingerBand( Close , Length, -1 ) ;

    var2 = Average(C,Length);

    ?

    ?

    condition3 = TIME>900 and TIME<2300;

    ?

    condition1 = c[1]>o[1] and c[1]>Average(c[1],26) and condition3 ;;

    ?

    condition2 = c[1]<o[1] and c[1]<Average(c[1],26) and condition3 ;;

    ?

    ?

    if TNUMSEQLOSS<ww then begin

    Zhiyings=Zhiying;

    end

    Else begin

    ? ? ? ?Zhiyings=Zhiyingx;

    end;

    ?

    if TNUMSEQLOSS<nn then begin

    shoushua=shoushu;

    end

    Else begin

    ? ? ? ? shoushu=0.5;

    ? ? ? ?end;

    ?

    ?

    ?

    ?

    condition4 = CurrentBar > 1 and H>Zhisun+avgentryprice and marketposition=-1 and condition3 ;

    ?

    condition5 = CurrentBar > 1 and l<avgentryprice-Zhisun and marketposition=1 and condition3 ;

    ?

    ?

    condition6 = CurrentBar > 1 and l<avgentryprice-Zhiyings and marketposition=-1 and condition3 ;

    ?

    condition7 = CurrentBar > 1 and h>avgentryprice+Zhiyings and marketposition=1 and condition3 ;

    ?

    ?

    if (condition1 or yici[1]=1) ?and marketposition=0 then begin

    ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ??

    Buy ( "kai1" ) 1 Contract next bar at Open stop ;

    ?

    end;

    ?

    if (condition2 or yici[1]=-1) and marketposition=0 ?then begin

    ?

    ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ??

    Sell Short ( "kai2" ) 1 Contract ?next bar at Open stop ;

    ?

    end;

    ?

    if condition4 ?and condition5=False then begin

    ? ? ? ? ? TNUMSEQLOSS=TNUMSEQLOSS+1;

    ? ? ? ? ? print(date," ",time," buy ?TNUMSEQLOSS: ",TNUMSEQLOSS);

    ? ? ? ? ? shoushu=Power(2,TNUMSEQLOSS);?

    ? ? ? ? ? ?print(date," ",time," buy ?shoushu: ",shoushu);

    ?

    buy ?( "kui1" ) ?shoushu Contracts ? ? ? next bar at Zhisun+avgentryprice ?stop ;

    end;

    ?

    ?

    ?

    if condition5 and condition4=False then begin

    ?

    ? ? ? ? ? ?TNUMSEQLOSS=TNUMSEQLOSS+1;

    ? ? ? ? ? ?print(date," ",time," sellshort TNUMSEQLOSS: ",TNUMSEQLOSS);

    ? ? ? ? ? ?shoushu=Power(2,TNUMSEQLOSS);?

    ? ? ? ? ? ?print(date," ",time," sellshort shoushu: ",shoushu);

    sellshort( "kui2" ) ?shoushu Contracts ? ?next bar at avgentryprice-Zhisun ?stop ;

    ?

    end;

    ?

    ?

    if condition6 then begin

    ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ??

    buytocover ?( "ying1" ) next bar at avgentryprice-Zhiyings ?stop ;

    shoushu=1;

    TNUMSEQLOSS=0;

    yici=-1;

    end;

    ?

    if condition7 then begin

    ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ??

    sell( "ying2" ) next bar at avgentryprice+Zhiyings stop ;

    shoushu=1;

    ? ? ? ?TNUMSEQLOSS=0;

    ? ? ? ?yici=1;

    end;

    ?

    ?

  • MC回復(fù)討論一:

    if condition4 ?and condition5=False then begin

    ? ? ? ? ? TNUMSEQLOSS=TNUMSEQLOSS+1;

    ? ? ? ? ? print(date," ",time," buy ?TNUMSEQLOSS: ",TNUMSEQLOSS);

    ? ? ? ? ? shoushu=Power(2,TNUMSEQLOSS);?

    ? ? ? ? ? ?print(date," ",time," buy ?shoushu: ",shoushu);

    buy ?( "kui1" ) ?shoushu Contracts ? ? ? next bar at Zhisun+avgentryprice ?stop ;

    end;

    if condition5 and condition4=False then begin

    ? ? ? ? ? ?TNUMSEQLOSS=TNUMSEQLOSS+1;

    ? ? ? ? ? ?print(date," ",time," sellshort TNUMSEQLOSS: ",TNUMSEQLOSS);

    ? ? ? ? ? ?shoushu=Power(2,TNUMSEQLOSS);?

    ? ? ? ? ? ?print(date," ",time," sellshort shoushu: ",shoushu);

    sellshort( "kui2" ) ?shoushu Contracts ? ?next bar at avgentryprice-Zhisun ?stop ;

    end;

    以上代碼是您累加變量TNUMSEQLOSS的地方,也是問題的所在,之所以出現(xiàn)”跳躍“是因?yàn)橹貜?fù)累加,也就是條件連續(xù)滿足導(dǎo)致連續(xù)累加;因?yàn)槟褂玫氖菞l件單,而條件單不一定委托出去就會(huì)成交,但是您在條件成立時(shí)肯定會(huì)累加變量TNUMSEQLOSS,所以導(dǎo)致兩者的不一致;解決方法是,確定條件單成交之后再累加變量TNUMSEQLOSS

    ?

    ?

  • MC回復(fù)討論二:

    判斷是否成交的方法有很多:

    第一、在沒有加倉(cāng)的情況下,通過(guò)當(dāng)根bar的marketposition與前一根bar的marketposition的信息對(duì)比進(jìn)行判斷,但是由于marketposition沒有回溯的功能,但您需要先將marketposition的值賦值給新建的變量mp,然后通過(guò)判斷mp[1]<>mp

    第二、在有加倉(cāng)的情況下,您還需要考慮關(guān)鍵字currentcontracts等持倉(cāng)部位信息的變化,以此來(lái)判斷。

    第三、策略屬性中有重新計(jì)算的設(shè)置,可以勾選“委托單成交”,這個(gè)用來(lái)判斷委托單成交有點(diǎn)復(fù)雜,不建議使用。

    ?

  • MC回復(fù)討論三:

    inputs:

    ? ? ? ? ?Zhiyingx( 9999) , ? ? ?

    Zhiying( 9999) ,

    Zhisun( 5 ) ;

    ? ? ? ?

    ?

    variables:

    ? ?nn(4) ,

    ? ? ? ? ?ww(3) , ? ? ??

    ?

    var0( 0 ), var1( 0 ), var2( 0 ),Length( 20 ),Zhiyings( 20 ),TNUMSEQLOSS( 0 ),

    shoushua( 1 ), shoushu(1), yici(0), mp(0);;

    ?

    yici=0;

    var0 = BollingerBand( Close, Length, 1 ) ;

    var1 = BollingerBand( Close , Length, -1 ) ;

    var2 = Average(C,Length);

    ?

    ?

    condition3 = TIME>900 and TIME<2300;

    ?

    condition1 = c[1]>o[1] and c[1]>Average(c[1],26) and condition3 ;;

    ?

    condition2 = c[1]<o[1] and c[1]<Average(c[1],26) and condition3 ;;

    ?

    ?

    if TNUMSEQLOSS<ww then begin

    Zhiyings=Zhiying;

    end

    Else begin

    ? ? ? ?Zhiyings=Zhiyingx;

    end;

    ?

    if TNUMSEQLOSS<nn then begin

    shoushua=shoushu;

    end

    Else begin

    ? ? ? ? shoushu=0.5;

    ? ? ? ?end;

    ?

    ?

    mp=marketposition;

    ?

    condition4 = CurrentBar > 1 and H>Zhisun+avgentryprice and marketposition=-1 and condition3 ?and ?mp[1]<>mp;

    ?

    condition5 = CurrentBar > 1 and l<avgentryprice-Zhisun and marketposition=1 and condition3 and ?mp[1]<>mp;

    ?

    ?

    condition6 = CurrentBar > 1 and l<avgentryprice-Zhiyings and marketposition=-1 and condition3 ;

    ?

    condition7 = CurrentBar > 1 and h>avgentryprice+Zhiyings and marketposition=1 and condition3 ;

    ?

    ?

    if (condition1 or yici[1]=1) ?and marketposition=0 then begin

    ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ??

    Buy ( "kai1" ) 1 Contract next bar at Open stop ;

    ?

    end;

    ?

    if (condition2 or yici[1]=-1) and marketposition=0 ?then begin

    ?

    ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ??

    Sell Short ( "kai2" ) 1 Contract ?next bar at Open stop ;

    ?

    end;

    ?

    if condition4 ?and condition5=False then begin

    ? ? ? ? ? TNUMSEQLOSS=TNUMSEQLOSS+1;

    ? ? ? ? ? print(date," ",time," buy ?TNUMSEQLOSS: ",TNUMSEQLOSS);

    ? ? ? ? ? shoushu=Power(2,TNUMSEQLOSS);?

    ? ? ? ? ? ?print(date," ",time," buy ?shoushu: ",shoushu);

    ?

    buy ?( "kui1" ) ?shoushu Contracts ? ? ? next bar at Zhisun+avgentryprice ?stop ;

    ?

    ?

    end;

    ?

    ?

    ?

    if condition5 and condition4=False then begin

    ?

    ? ? ? ? ? ?TNUMSEQLOSS=TNUMSEQLOSS+1;

    ? ? ? ? ? ?print(date," ",time," sellshort TNUMSEQLOSS: ",TNUMSEQLOSS);

    ? ? ? ? ? ?shoushu=Power(2,TNUMSEQLOSS);?

    ? ? ? ? ? ?print(date," ",time," sellshort shoushu: ",shoushu);

    sellshort( "kui2" ) ?shoushu Contracts ? ?next bar at avgentryprice-Zhisun ?stop ;

    ?

    end;

    ?

    ?

    if condition6 then begin

    ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ??

    buytocover ?( "ying1" ) next bar at avgentryprice-Zhiyings ?stop ;

    shoushu=1;

    TNUMSEQLOSS=0;

    yici=-1;

    end;

    ?

    if condition7 then begin

    ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ??

    sell( "ying2" ) next bar at avgentryprice+Zhiyings stop ;

    shoushu=1;

    ? ? ? ?TNUMSEQLOSS=0;

    ? ? ? ?yici=1;

    end;

    ?

    ?

    ?

    我按照您說(shuō)的改了,這樣基本交易1,2次就不交易了,這是怎么回事?

    ?

  • MC回復(fù)討論四:

    inputs:

    ? ? ? ? ?Zhiyingx( 9999) , ? ? ?

    Zhiying( 9999) ,

    Zhisun( 5 ) ;

    ? ? ? ?

    ?

    variables:

    ? ?nn(4) ,

    ? ? ? ? ?ww(3) , ? ? ??

    ?

    var0( 0 ), var1( 0 ), var2( 0 ),Length( 20 ),Zhiyings( 20 ),TNUMSEQLOSS( 0 ),

    shoushua( 1 ), shoushu(1), yici(0), mp(0);;

    ?

    yici=0;

    var0 = BollingerBand( Close, Length, 1 ) ;

    var1 = BollingerBand( Close , Length, -1 ) ;

    var2 = Average(C,Length);

    ?

    ?

    condition3 = TIME>900 and TIME<2300;

    ?

    condition1 = c[1]>o[1] and c[1]>Average(c[1],26) and condition3 ;;

    ?

    condition2 = c[1]<o[1] and c[1]<Average(c[1],26) and condition3 ;;

    ?

    ?

    if TNUMSEQLOSS<ww then begin

    Zhiyings=Zhiying;

    end

    Else begin

    ? ? ? ?Zhiyings=Zhiyingx;

    end;

    ?

    if TNUMSEQLOSS<nn then begin

    shoushua=shoushu;

    end

    Else begin

    ? ? ? ? shoushu=0.5;

    ? ? ? ?end;

    ?

    ?

    mp=marketposition;

    ?

    condition4 = CurrentBar > 1 and H>Zhisun+avgentryprice and marketposition=-1 and condition3 ?and ?mp[1]<>mp;

    ?

    condition5 = CurrentBar > 1 and l<avgentryprice-Zhisun and marketposition=1 and condition3 and ?mp[1]<>mp;

    ?

    ?

    condition6 = CurrentBar > 1 and l<avgentryprice-Zhiyings and marketposition=-1 and condition3 ;

    ?

    condition7 = CurrentBar > 1 and h>avgentryprice+Zhiyings and marketposition=1 and condition3 ;

    ?

    ?

    if (condition1 or yici[1]=1) ?and marketposition=0 then begin

    ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ??

    Buy ( "kai1" ) 1 Contract next bar at Open stop ;

    ?

    end;

    ?

    if (condition2 or yici[1]=-1) and marketposition=0 ?then begin

    ?

    ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ??

    Sell Short ( "kai2" ) 1 Contract ?next bar at Open stop ;

    ?

    end;

    ?

    if condition4 ?and condition5=False then begin

    ? ? ? ? ? TNUMSEQLOSS=TNUMSEQLOSS+1;

    ? ? ? ? ? print(date," ",time," buy ?TNUMSEQLOSS: ",TNUMSEQLOSS);

    ? ? ? ? ? shoushu=Power(2,TNUMSEQLOSS);?

    ? ? ? ? ? ?print(date," ",time," buy ?shoushu: ",shoushu);

    ?

    buy ?( "kui1" ) ?shoushu Contracts ? ? ? next bar at Zhisun+avgentryprice ?stop ;

    ?

    ?

    end;

    ?

    ?

    ?

    if condition5 and condition4=False then begin

    ?

    ? ? ? ? ? ?TNUMSEQLOSS=TNUMSEQLOSS+1;

    ? ? ? ? ? ?print(date," ",time," sellshort TNUMSEQLOSS: ",TNUMSEQLOSS);

    ? ? ? ? ? ?shoushu=Power(2,TNUMSEQLOSS);?

    ? ? ? ? ? ?print(date," ",time," sellshort shoushu: ",shoushu);

    sellshort( "kui2" ) ?shoushu Contracts ? ?next bar at avgentryprice-Zhisun ?stop ;

    ?

    end;

    ?

    ?

    if condition6 then begin

    ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ??

    buytocover ?( "ying1" ) next bar at avgentryprice-Zhiyings ?stop ;

    shoushu=1;

    TNUMSEQLOSS=0;

    yici=-1;

    end;

    ?

    if condition7 then begin

    ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ??

    sell( "ying2" ) next bar at avgentryprice+Zhiyings stop ;

    shoushu=1;

    ? ? ? ?TNUMSEQLOSS=0;

    ? ? ? ?yici=1;

    end;

    ?

    ?

    ?

    我按照您說(shuō)的改了,這樣基本交易1,2次就不交易了,這是怎么回事?

 

有思路,想編寫各種指標(biāo)公式,程序化交易模型,選股公式,預(yù)警公式的朋友

可聯(lián)系技術(shù)人員 QQ: 511411198  點(diǎn)擊這里給我發(fā)消息進(jìn)行 有償 編寫!不貴!點(diǎn)擊查看價(jià)格!


【字體: 】【打印文章】【查看評(píng)論

相關(guān)文章

    沒有相關(guān)內(nèi)容
中文字幕av无码不卡免费_蜜臀AV无码精品人妻色欲_亚洲成AV人片在线观看无码不卡_无码专区天天躁天天躁在线

久久亚洲精品伦理| 久久亚洲精品欧美| 国产精品日韩精品欧美精品| 国产欧美成人| 你懂的成人av| 亚洲国产欧美不卡在线观看| 国产伦精品一区二区三区照片91 | 久久av最新网址| 久久av免费一区| 合欧美一区二区三区| 国产亚洲一区在线播放| 欧美日本中文| 欧美亚洲在线| 在线精品亚洲| 欧美精品首页| 久久久夜夜夜| 一区二区三区国产盗摄| 欧美激情91| 亚洲免费一区二区| 亚洲国产精品久久久久久女王| 欧美资源在线| 亚洲国产精品毛片| 欧美精品不卡| 鲁鲁狠狠狠7777一区二区| 亚洲黄色一区二区三区| 欧美成人亚洲| 久久xxxx| 日韩午夜视频在线观看| 韩国在线一区| 欧美理论在线| 久久婷婷激情| 久久av二区| 国产日韩欧美精品| 亚洲福利一区| 伊人成人在线视频| 国产精品二区在线| 国产精品sss| 国产精品对白刺激久久久| 你懂的一区二区| 欧美中文字幕| 亚洲一区二区在线看| 一区二区三区视频在线播放| 国语自产精品视频在线看8查询8| 欧美精品综合| 欧美日韩一区在线播放| 欧美国产免费| 国产精品sm| 狠狠噜噜久久| 亚洲国产一区二区三区高清| 国产综合网站| 午夜精品偷拍| 亚洲欧美日韩综合国产aⅴ| 在线成人h网| 影音先锋亚洲一区| 日韩视频在线播放| 国产亚洲在线| 欧美一区二区三区久久精品茉莉花 | 日韩午夜av| 亚洲日韩成人| 先锋亚洲精品| 欧美日韩网址| 亚洲精品在线视频观看| 亚洲一区综合| 欧美日韩亚洲一区二区三区在线观看 | 国产精品美女黄网| 亚洲欧美日韩综合一区| 久久久www| 国内精品99| 在线综合亚洲| 在线看片一区| 1024成人| 性色av一区二区怡红| 久久精品中文| 日韩一区二区免费看| 美女视频一区免费观看| 欧美日韩一区二区三区在线观看免 | 国产一区二区三区奇米久涩| 另类亚洲自拍| 精久久久久久| 六月婷婷一区| 亚洲视频www| 欧美午夜久久| 欧美中日韩免费视频| 在线日本高清免费不卡| 久久综合亚州| 亚洲一区二区三区高清不卡| 韩国一区二区三区美女美女秀| 国产九九精品| 亚洲国产一区二区三区在线播| 蜜桃久久精品乱码一区二区| 日韩亚洲一区在线播放| 欧美日韩三级| 久久精品中文字幕一区二区三区| 亚洲精选一区| 亚洲国内在线| 国内精品99| 欧美喷水视频| 久久亚洲欧洲| 久久精品主播| 伊人久久大香线蕉av超碰演员| 午夜久久99| 欧美一区二区三区四区夜夜大片 | 午夜综合激情| 中文网丁香综合网| 精品1区2区3区4区| 国模 一区 二区 三区| 欧美在线综合| 国产精品一区二区三区免费观看| 亚洲精品一区二区三| 亚洲二区三区四区| 亚洲精品日本| 亚洲另类视频| 中文一区二区| 午夜综合激情| 久久亚洲免费| 欧美日韩一区在线视频| 欧美深夜福利| 一区福利视频| 国产日韩一区二区三区| 亚洲一区二区三区在线观看视频| 国产午夜精品在线| 美女国产一区| 欧美激情第二页| 红桃视频欧美| 亚洲深爱激情| 久久性天堂网| 国产综合自拍| 国产人成精品一区二区三| 先锋a资源在线看亚洲| 久久久国产精品一区二区中文| 久久人人精品| 激情亚洲成人| 国产精品入口| 欧美日韩精品| 99亚洲精品| 每日更新成人在线视频| 韩国一区二区三区在线观看| 99国内精品| 久久一区二区精品| 狠狠色狠狠色综合日日tαg| 亚洲视频www| 久热综合在线亚洲精品| 亚洲无吗在线| 鲁大师影院一区二区三区| 午夜视频久久久| 精品9999| 欧美日本一区| 在线高清一区| 久久久久网址| 亚洲精品国产精品国自产观看| 先锋影音久久久| 亚洲福利av| 久久亚洲电影| 99精品热视频只有精品10| 久久久精品网| 国产日韩精品久久| 国内精品久久久久久久果冻传媒| 一本色道久久综合| 狠狠入ady亚洲精品| 国产精品亚洲综合色区韩国| 欧美视频一区| 另类国产ts人妖高潮视频| 精品1区2区| 欧美午夜一区| 久久综合五月| 免费在线欧美黄色| 夜夜嗨网站十八久久| 国内精品亚洲| 欧美日韩在线一二三| 久久久精品日韩| 亚洲中字在线| 国产精品毛片va一区二区三区| 亚洲免费综合| 国产专区一区| 久久亚洲二区| 麻豆精品传媒视频| 国产精品一级久久久| 亚洲精品在线免费| 亚洲国产婷婷| 亚洲高清自拍| 最新国产拍偷乱拍精品| 国产一区二区中文字幕免费看| 久久久久久色| 男人的天堂亚洲| 美女网站久久| 久久综合九色| 欧美aa国产视频| 麻豆精品传媒视频| 米奇777在线欧美播放| 亚洲一区二区四区| 性一交一乱一区二区洋洋av| 国产伦一区二区三区色一情| 亚洲女人av| 久久婷婷一区| 欧美日韩在线一二三| 国内久久视频| 在线成人h网| 一区二区毛片| 久久成人一区| 欧美在线日韩| 在线观看欧美亚洲| 亚洲美女毛片| 国产美女一区| 久久激情网站| 国产精品草草| 夜夜精品视频| 蜜桃av一区| 午夜精品亚洲| 99精品国产一区二区青青牛奶 | 国精品一区二区三区| 狠狠色综合网站久久久久久久| 激情另类综合| 西西裸体人体做爰大胆久久久| 欧美.www| 亚洲免费大片| 久久久久一区二区三区| 国产精品porn| 国产日韩欧美二区| 欧美在线看片| 亚洲日产国产精品| 久久久国产精品一区二区中文| 欧美天天在线| 香蕉久久国产| 伊人久久成人| 久久亚洲国产精品日日av夜夜| 国产中文一区| 亚洲一区三区电影在线观看| 国产精品v欧美精品∨日韩| 亚洲九九精品| 欧美日韩中文| 老司机一区二区三区| 影音先锋国产精品| 午夜精品亚洲| 久久国产88| 国产日韩亚洲| 亚洲国产精品www| 欧美大片专区| 久久福利电影| 一区二区冒白浆视频| 亚洲午夜精品久久久久久app| 亚洲女优在线| av成人免费观看| 亚洲网站视频| 欧美性色综合| 欧美日韩一区在线播放| 国产亚洲一区二区三区在线播放| 欧美理论在线| 欧美va天堂| 久久久精品午夜少妇| 国产精品亚洲一区| 在线亚洲伦理| 亚洲精品裸体| 日韩午夜av| 亚洲激情影院| 在线观看视频免费一区二区三区 | 亚洲精品影院| 影音先锋亚洲精品| 国产精品国产三级欧美二区| 久久久一二三| 欧美一区1区三区3区公司 | 欧美精品一卡| 欧美一区二区三区四区夜夜大片 | 久久本道综合色狠狠五月| 一本久道久久综合狠狠爱| 99在线精品免费视频九九视| 久久亚洲高清| 久久国产精品久久精品国产| 香蕉久久久久久久av网站| 亚洲伊人网站| 久久精品综合一区| 欧美成人dvd在线视频| 欧美一区二区三区在线免费观看| 模特精品在线| 欧美福利网址| 黄色精品网站| 亚洲精品在线观看免费| 国产深夜精品| 久久久999| 欧美午夜一区| 99精品国产福利在线观看免费| 一本久道久久综合狠狠爱| 亚洲欧美网站| 国产一区欧美| 国产日韩欧美| 午夜国产欧美理论在线播放| 激情国产一区| 中文精品一区二区三区| 久久国产成人| 黄色欧美成人| 午夜在线精品偷拍| 欧美日本一区二区视频在线观看 | 国产一区二区三区无遮挡| 国产一区二区三区四区老人| 很黄很黄激情成人| 亚洲国产精品一区制服丝袜| 日韩亚洲一区在线播放| 国产精品毛片在线| 欧美成人午夜| 国产欧美成人| 欧美在线国产| 99精品99| 欧美日韩视频在线一区二区观看视频| 影音先锋亚洲电影| 久久久久久久久久码影片| 狠狠入ady亚洲精品经典电影| 亚洲美洲欧洲综合国产一区| 亚洲一区二区三区午夜| 亚洲一二三区精品| 久久久久久亚洲精品不卡4k岛国| 在线观看日韩av电影| 欧美一区二区三区四区在线观看地址 | 国色天香一区二区| 国产精品一区免费观看| 欧美三级第一页| 鲁大师影院一区二区三区| 在线精品观看| 欧美日韩四区| 久久电影一区| 国产亚洲午夜| 亚洲国产一区二区三区a毛片| 欧美一区国产在线| 性色av一区二区怡红| 夜夜爽av福利精品导航| 精品二区视频| 黑人一区二区| 国产精品对白刺激久久久| 欧美一区二区三区四区夜夜大片| 亚洲综合不卡| 亚洲欧美日韩国产一区| 国产亚洲毛片在线| 99国产精品久久久久久久| 亚洲国产三级| 亚洲国产高清一区| 136国产福利精品导航网址| 韩国一区二区三区在线观看| 欧美久久视频| 欧美午夜欧美| 国产精品99一区二区| 欧美全黄视频| 国内精品福利| 久久综合九色综合网站| 宅男噜噜噜66一区二区| 亚洲日本视频| 一本色道久久综合| 国产女主播一区二区| 国产视频亚洲| 亚洲一区二区在线看| 亚洲欧美日韩精品久久久| 久久国产主播精品| 欧美在线网址| 狠狠色狠狠色综合日日tαg| 黄色免费成人| 日韩视频免费| 亚洲欧美春色| 久久午夜电影| 狠狠综合久久av一区二区老牛| 国内精品久久国产| 99国产精品自拍| 久久精品99| 国产精品v亚洲精品v日韩精品 | 国产在线视频欧美一区二区三区| 欧美私人啪啪vps| 国产精品sm| 亚洲欧洲一区二区在线观看| 国产精品美女xx| 老司机精品久久| 亚洲大黄网站| 麻豆av福利av久久av| 欧美 日韩 国产一区二区在线视频 | 亚洲精品韩国| 亚洲区欧美区| 国产日韩欧美三区| 久久国产精品亚洲77777| 久久深夜福利| 亚洲成人自拍视频| 国产精品美女诱惑| 巨乳诱惑日韩免费av| 亚洲黄色影片| 久久久久久亚洲精品不卡4k岛国| 黄色精品网站| 久久国产日韩| 最新成人av网站| 久久一日本道色综合久久| 最新国产拍偷乱拍精品| 欧美在线1区| 国产精品亚洲综合| 伊人精品视频| 欧美va天堂在线| 国产一区二区三区高清| 欧美激情视频一区二区三区免费| 伊人久久婷婷色综合98网| 蜜桃久久av| av成人免费观看| 国产综合欧美| 欧美jizzhd精品欧美巨大免费| 亚洲区一区二区三区| 国产一区二区三区四区三区四| 午夜一区不卡| 国产欧美日韩综合精品二区| 国产一区二区在线观看免费播放 |