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

您現在的位置:程序化交易>> 期貨公式>> (MC)multicharts>> MC知識>>正文內容

代碼問題,求教 [MC]

  • MC用戶求助:

    只是想實現 止損后,反手交易,并且手數翻倍。

    所以手數應該是1 2 4 8 16 32 這樣倍增。

    但現在總是出現跳躍,不知道是為什么。

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

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

    32后 直接跳到了128

    是和模式(bar內?)有關?還是代碼?

    ?

    全部代碼如下:

    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回復討論一:

    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的地方,也是問題的所在,之所以出現”跳躍“是因為重復累加,也就是條件連續滿足導致連續累加;因為您使用的是條件單,而條件單不一定委托出去就會成交,但是您在條件成立時肯定會累加變量TNUMSEQLOSS,所以導致兩者的不一致;解決方法是,確定條件單成交之后再累加變量TNUMSEQLOSS

    ?

    ?

  • MC回復討論二:

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

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

    第二、在有加倉的情況下,您還需要考慮關鍵字currentcontracts等持倉部位信息的變化,以此來判斷。

    第三、策略屬性中有重新計算的設置,可以勾選“委托單成交”,這個用來判斷委托單成交有點復雜,不建議使用。

    ?

  • MC回復討論三:

    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;

    ?

    ?

    ?

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

    ?

  • MC回復討論四:

    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;

    ?

    ?

    ?

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

 

有思路,想編寫各種指標公式,程序化交易模型,選股公式,預警公式的朋友

可聯系技術人員 QQ: 511411198  點擊這里給我發消息進行 有償 編寫!不貴!點擊查看價格!


【字體: 】【打印文章】【查看評論

相關文章

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

亚洲三级电影在线观看| 久久久国产精品一区二区中文| 中文精品一区二区三区| 亚洲免费久久| 久久久99国产精品免费| 欧美另类女人| 亚洲欧洲一区| 久久综合伊人77777麻豆| 欧美激情第二页| 亚洲激情视频| 美女精品国产| 国产精品二区三区四区| 一区二区日本视频| 久久亚洲综合| 日韩视频久久| 久久久久久穴| 国产日韩亚洲欧美精品| 欧美视频官网| 免费看黄裸体一级大秀欧美| 精品成人一区| 久久精品在线| 国产精品亚洲综合久久| 亚洲小说欧美另类社区| 久久免费国产| 国产欧美丝祙| 亚洲国产高清一区二区三区| 欧美a级片网站| 亚洲欧美久久久久一区二区三区| 黑丝一区二区| 欧美日韩国产在线一区| 麻豆亚洲精品| 亚洲欧美日韩国产| 国产精品久久久久久模特 | 黑人巨大精品欧美一区二区小视频| aa级大片欧美三级| 一区精品在线| 亚洲第一黄色| 影音先锋亚洲精品| 国精品一区二区三区| 老**午夜毛片一区二区三区| 国产精品一区二区欧美| 国产欧美大片| 国产美女精品| 国产精品久久亚洲7777| 亚洲美女91| 亚洲日韩成人| 国产精品主播| 久久精品一本| 欧美不卡三区| 国内精品久久久久久久97牛牛| 欧美日韩蜜桃| 在线观看日韩av电影| 国模吧视频一区| 亚洲高清激情| 国产精品入口66mio| 国产精品手机视频| 亚洲女同在线| 欧美日韩在线播放一区二区| 国产综合色一区二区三区| 欧美日韩理论| 亚洲美洲欧洲综合国产一区| 一区二区冒白浆视频| 国产日韩欧美在线播放不卡| 免费在线一区二区| 欧美日韩综合网| 亚洲日本精品国产第一区| 国产偷久久久精品专区| 久久久久99| 欧美特黄一区| 国产欧美日本| 欧美日韩影院| 国产精品一区二区你懂得| 久久久久一区二区| 在线精品一区二区| 国产农村妇女精品一区二区| 午夜久久影院| 国产日韩在线一区二区三区| 欧美激情视频一区二区三区在线播放 | 99精品热6080yy久久| 免费永久网站黄欧美| 欧美日韩91| 夜夜精品视频| 欧美日韩mv| 亚洲综合电影一区二区三区| 欧美日韩综合久久| 亚洲一区视频| 激情另类综合| 欧美永久精品| 亚洲一区二区三区免费观看| 亚洲性图久久| 午夜日韩电影| 久久夜色精品| 亚洲一区二区三区高清不卡| 1024精品一区二区三区| 欧美~级网站不卡| 国产精品免费一区二区三区观看| 国产综合网站| 欧美日韩中文| 欧美一区二区视频在线| 国产伦精品一区二区三区| 精品91视频| 国产综合18久久久久久| 欧美国产高清| 欧美在线资源| 欧美一区影院| 久久综合久久综合这里只有精品| 一区二区三区欧美成人| 亚洲高清av| 狠狠综合久久| 国内一区二区在线视频观看| 亚洲欧美伊人| 欧美日韩国产探花| 欧美日韩18| 国内精品一区二区| 亚洲天堂偷拍| 亚洲欧洲一区二区在线观看| 伊人成人在线| 亚洲精品一区二区三区av| 影音先锋中文字幕一区二区| 韩日视频一区| 亚洲国产婷婷| 国产视频久久| 噜噜噜久久亚洲精品国产品小说| 久久99伊人| 欧美ab在线视频| 欧美日韩一区二区三区在线视频 | 麻豆9191精品国产| 久久久久一区二区三区| 欧美凹凸一区二区三区视频| 欧美片第1页综合| 激情国产一区| 国产精品一区在线播放| 久久精品亚洲一区二区| 欧美日韩视频在线一区二区观看视频| 欧美精品aa| 亚洲国产精品第一区二区三区| 亚洲精品在线免费| 国产欧美一区二区三区另类精品| 亚洲一区二区三区四区中文| 久久一区二区三区av| 欧美午夜电影在线观看 | 久久国产一区| 欧美日韩亚洲一区二区三区在线观看 | 国产欧美一区二区三区另类精品| 国产精品裸体一区二区三区| 香蕉久久夜色精品国产| 国产精品sm| 国产精品久久久久久久久久直播| 久久久久.com| 亚洲国产裸拍裸体视频在线观看乱了中文 | 国产亚洲综合精品| 久久av一区二区| 激情久久中文字幕| 免费在线一区二区| 极品av少妇一区二区| 亚洲综合社区| 在线免费观看一区二区三区| 亚洲欧美日韩精品久久久| 亚洲手机在线| 欧美在线高清| 国产精品免费区二区三区观看| 欧美极品一区| 亚洲永久字幕| 99riav国产精品| 国产精品swag| 久久午夜电影| 亚洲欧美日韩国产综合精品二区| 一区在线视频| 欧美精品成人| 久久精品电影| 国产亚洲毛片| 夜夜嗨一区二区三区| 影音先锋久久| 亚洲午夜久久久久久尤物| 午夜激情一区| 欧美精品入口| 欧美午夜在线| 欧美午夜不卡| 国模吧视频一区| 亚洲午夜精品久久久久久app| 欧美激情1区2区3区| 美女精品网站| 性色一区二区三区| 麻豆av一区二区三区| 老鸭窝毛片一区二区三区| 国产美女诱惑一区二区| 国产日韩欧美| 国产精品久久久久久久久久直播| 在线综合亚洲| 国产伦精品一区二区三区四区免费 | 欧美日韩爆操| 国产精品国产精品| 欧美精品一区二区三区在线看午夜 | 黑丝一区二区三区| 尤物在线精品| 亚洲黄色成人| 中文精品一区二区三区| 亚洲视频大全| 噜噜噜在线观看免费视频日韩| 午夜一区在线| 久久一综合视频| 欧美午夜电影在线观看 | 亚洲欧美清纯在线制服| 先锋影音一区二区三区| 鲁大师成人一区二区三区| 久久精品99| 欧美日本一区| 亚洲人妖在线| 亚洲欧美日韩综合国产aⅴ| 久久精品123| 欧美三级视频| 国产欧美一区二区三区另类精品| 国产精品一区二区三区免费观看| 欧美主播一区二区三区美女 久久精品人| 久久不射网站| 精品动漫一区| 性欧美xxxx大乳国产app| 午夜欧美视频| 中文久久精品| 欧美天天视频| 亚洲综合丁香| 亚洲午夜精品久久| 亚洲一区二区网站| 欧美日韩在线观看一区二区三区| 亚洲福利免费| 久久婷婷影院| 夜久久久久久| 欧美精品一级| 免费欧美日韩| 亚洲人成毛片在线播放女女| 免费一级欧美片在线播放| 国模精品娜娜一二三区| 亚洲免费在线精品一区| 一区国产精品| 午夜日韩电影| 免费在线观看成人av| 亚洲国产清纯| 欧美日韩综合久久| 久久aⅴ国产紧身牛仔裤| 影音先锋亚洲一区| 午夜精品婷婷| 另类亚洲自拍| 亚洲欧美激情诱惑| 在线视频精品| 99av国产精品欲麻豆| 韩日午夜在线资源一区二区| 久久五月天婷婷| 午夜一区二区三区不卡视频| 99xxxx成人网| 亚洲人体偷拍| 亚洲国产免费| 亚洲欧洲一区二区在线观看| 韩国在线视频一区| 欧美日韩在线一区二区三区| 玖玖视频精品| 欧美一区二区三区在线播放| 奶水喷射视频一区| 久久国产精品免费一区| 亚洲自啪免费| 免费试看一区| 久久精品男女| 每日更新成人在线视频| 久久xxxx精品视频| 蜜桃av噜噜一区二区三区| 免费在线播放第一区高清av| 亚洲一区二区三区精品在线观看| 国产日韩欧美一区| 亚洲专区在线| 久久久久综合一区二区三区| 久久久久se| 欧美精品七区| 在线观看一区欧美| 中文久久精品| 亚洲女同在线| 欧美凹凸一区二区三区视频| 欧美另类视频在线| 精品成人免费| 国产欧美亚洲一区| 美脚丝袜一区二区三区在线观看| 久久不射2019中文字幕| 午夜精品偷拍| 伊人天天综合| 亚洲欧美久久久| 欧美日韩国产亚洲一区| 亚洲大胆av| 亚洲欧美日韩国产一区二区| 午夜精品一区二区三区四区| 在线观看视频日韩| 亚洲在线国产日韩欧美| 欧美aⅴ99久久黑人专区| 国产综合第一页| 国产视频在线观看一区 | 久久中文字幕一区二区三区| 欧美在线免费| 亚洲精品欧美精品| 久久在线91| 1024成人| 美女被久久久| 亚洲精品在线免费| 久久久久国产精品一区三寸| 亚洲天堂成人| 久久精品国产第一区二区三区最新章节| 欧美日韩一区二区高清| 国产一区二区高清不卡| 午夜激情一区| 国产精品推荐精品| 狠狠爱成人网| 久久久久网站| 亚洲深夜影院| 国外成人免费视频| 久久久久久亚洲精品杨幂换脸 | 91久久久久| 女人香蕉久久**毛片精品| 亚洲精品在线视频观看| 欧美精品大片| 亚洲欧美清纯在线制服| 极品日韩久久| 老司机午夜精品视频| 中文欧美日韩| 日韩视频精品| 精品福利电影| 欧美久久一级| 欧美在线高清| 久久深夜福利| 久久综合九色综合网站| 性色av一区二区怡红| 国产日韩一区二区三区| 日韩一级免费| 9色精品在线| 夜夜爽99久久国产综合精品女不卡| 欧美日韩精品久久| 欧美va天堂在线| 欧美一区高清| 玖玖国产精品视频| 久久黄色网页| 欧美a级片一区| 亚洲欧美一区二区原创| 午夜精彩国产免费不卡不顿大片| 久久久久久久久久码影片| 麻豆亚洲精品| 久久久噜噜噜久久狠狠50岁| 久久精品道一区二区三区| 久久精品日产第一区二区| 亚洲专区免费| 久久人人超碰| 欧美婷婷久久| 激情一区二区三区| 亚洲精品日韩在线观看| 亚洲黑丝一区二区| 一区二区三区视频在线播放| 中文精品视频| 久久av一区二区三区| 久久精品国语| 欧美激情一区| 伊人激情综合| 国产日韩欧美三区| 久久xxxx| 欧美日韩国产综合在线| 激情国产一区| 夜夜精品视频| 久久久国产精品一区二区中文| 老牛国产精品一区的观看方式| 欧美在线精品一区| 亚洲五月婷婷| 夜夜嗨av一区二区三区网站四季av| 国产欧美日韩综合一区在线观看| 亚洲永久免费精品| 午夜视频久久久| 亚洲精品看片| 久久天堂成人| 精品动漫3d一区二区三区免费版 | 欧美a级片网站| 影音先锋国产精品| 久久av在线| 伊人色综合久久天天五月婷| 国产农村妇女精品一二区| 午夜欧美视频| 亚洲深夜福利| 国产一区免费视频| 亚洲一区二区毛片| 国产综合自拍| 久久精品女人| 一本色道久久综合亚洲精品婷婷 | 99pao成人国产永久免费视频| 夜夜精品视频| 欧美日韩免费观看一区| 国产日韩1区| 欧美日韩精选| 先锋影音一区二区三区| 亚洲一级网站| 欧美一区二区三区在线播放| 日韩五码在线| 欧美午夜免费影院| 午夜一区二区三区不卡视频| 伊人久久亚洲美女图片| 久久久久se| 国产欧美一区二区色老头| 亚洲午夜精品久久| 欧美在线亚洲| 国产乱码精品一区二区三区不卡|