MT5入门到精通之十二(行情类2)

接上一篇
3.行情类实现(主要是指标类函数)

//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
int Kline::AC(double &data0[],int count,string symbol,ENUM_TIMEFRAMES period)
  {
   int h=iAC(symbol,period);
   ArraySetAsSeries(data0,true);
   int a;
   a=CopyBuffer(h,0,0,count,data0);
   IndicatorRelease(h);
   return(a);
  }
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
int Kline::AD(double &data0[],int count,string symbol,ENUM_TIMEFRAMES period,ENUM_APPLIED_VOLUME applied_volume)
  {
   int h=iAD(symbol,period,applied_volume);
   ArraySetAsSeries(data0,true);
   int a;
   a=CopyBuffer(h,0,0,count,data0);
   IndicatorRelease(h);
   return(a);
  }
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
int Kline::ADX(double &data0[],
               double &data1[],
               double &data2[],
               int count,//获取几个值
               string           symbol,         // 交易品种名称 
               ENUM_TIMEFRAMES  period,         // 周期 
               int              adx_period      // 平均周期 
               )
  {
   int adx_h=iADX(symbol,period,adx_period);
   ArraySetAsSeries(data0,true);
   ArraySetAsSeries(data1,true);
   ArraySetAsSeries(data2,true);
   int a;
   a=CopyBuffer(adx_h,0,0,count,data0);
   a=CopyBuffer(adx_h,1,0,count,data1);
   a=CopyBuffer(adx_h,2,0,count,data2);
   IndicatorRelease(adx_h);
   return(a);
  }
//+------------------------------------------------------------------+
int Kline::ADXWilder(double &data0[],double &data1[],double &data2[],int count,string symbol,ENUM_TIMEFRAMES period,int adx_period)
  {
   int h=iADXWilder(symbol,period,adx_period);
   ArraySetAsSeries(data0,true);
   ArraySetAsSeries(data1,true);
   ArraySetAsSeries(data2,true);
   int a;
   a=CopyBuffer(h,0,0,count,data0);
   a=CopyBuffer(h,1,0,count,data1);
   a=CopyBuffer(h,2,0,count,data2);
   IndicatorRelease(h);
   return(a);
  }
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
int Kline::AMA(double &data0[],int count,string symbol,ENUM_TIMEFRAMES period,int ama_period,int fast_ma_period,int slow_ma_period,int ama_shift,ENUM_APPLIED_PRICE applied_price)
  {
   int h=iAMA(symbol,period,ama_period,fast_ma_period,slow_ma_period,ama_shift,applied_price);
   ArraySetAsSeries(data0,true);
   int a;
   a=CopyBuffer(h,0,0,count,data0);
   IndicatorRelease(h);
   return(a);
  }
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
int Kline::AO(double &data0[],int count,string symbol,ENUM_TIMEFRAMES period)
  {
   int h=iAO(symbol,period);
   ArraySetAsSeries(data0,true);
   int a;
   a=CopyBuffer(h,0,0,count,data0);
   IndicatorRelease(h);
   return(a);
  }
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
int Kline::ATR(double &data0[],int count,string symbol,ENUM_TIMEFRAMES period,int ma_period)
  {
   int h=iATR(symbol,period,ma_period);
   ArraySetAsSeries(data0,true);
   int a;
   a=CopyBuffer(h,0,0,count,data0);
   IndicatorRelease(h);
   return(a);
  }
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
int Kline::Alligator(double &data0[],double &data1[],double &data2[],int count,string symbol,ENUM_TIMEFRAMES period,int jaw_period,int jaw_shift,int teeth_period,int teeth_shift,int lips_period,int lips_shift,ENUM_MA_METHOD ma_method,ENUM_APPLIED_PRICE applied_price)
  {
   int h=iAlligator(symbol,period,jaw_period,jaw_shift,teeth_period,teeth_shift,lips_period,lips_shift,ma_method,applied_price);
   ArraySetAsSeries(data0,true);
   ArraySetAsSeries(data1,true);
   ArraySetAsSeries(data2,true);
   int a;
   a=CopyBuffer(h,0,0,count,data0);
   a=CopyBuffer(h,1,0,count,data1);
   a=CopyBuffer(h,2,0,count,data2);
   IndicatorRelease(h);
   return(a);
  }
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
int Kline::BWMFI(double &data0[],int count,string symbol,ENUM_TIMEFRAMES period,ENUM_APPLIED_VOLUME applied_volume)
  {
   int h=iBWMFI(symbol,period,applied_volume);
   ArraySetAsSeries(data0,true);
   int a;
   a=CopyBuffer(h,0,0,count,data0);
   IndicatorRelease(h);
   return(a);
  }
//+------------------------------------------------------------------+
//|   The buffer numbers are the following: 0 - BASE_LINE, 1 - UPPER_BAND, 2 - LOWER_BAND                                                               |
//+------------------------------------------------------------------+
int Kline::Bands(double &data0[],double &data1[],double &data2[],int count,string symbol,ENUM_TIMEFRAMES period,int bands_period,int bands_shift,double deviation,ENUM_APPLIED_PRICE applied_price)
  {
//int h=iCustom(symbol,period,"Examples\\BB",bands_period,bands_shift,deviation);
   int h=iBands(symbol,period,bands_period,bands_shift,deviation,applied_price);
   ArraySetAsSeries(data0,true);
   ArraySetAsSeries(data1,true);
   ArraySetAsSeries(data2,true);
   int a;
   a=CopyBuffer(h,0,0,count,data2);//mid
   a=CopyBuffer(h,1,0,count,data0);//up
   a=CopyBuffer(h,2,0,count,data1);//low
   IndicatorRelease(h);
   return(a);
  }
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
int Kline::BearsPower(double &data0[],int count,string symbol,ENUM_TIMEFRAMES period,int ma_period)
  {
   int h=iBearsPower(symbol,period,ma_period);
   ArraySetAsSeries(data0,true);
   int a;
   a=CopyBuffer(h,0,0,count,data0);
   IndicatorRelease(h);
   return(a);
  }
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
int Kline::BullsPower(double &data0[],int count,string symbol,ENUM_TIMEFRAMES period,int ma_period)
  {
   int h=iBullsPower(symbol,period,ma_period);
   ArraySetAsSeries(data0,true);
   int a;
   a=CopyBuffer(h,0,0,count,data0);
   IndicatorRelease(h);
   return(a);
  }
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
int Kline::CCI(double &data0[],int count,string symbol,ENUM_TIMEFRAMES period,int ma_period,ENUM_APPLIED_PRICE applied_price)
  {
   int h=iCCI(symbol,period,ma_period,applied_price);
   ArraySetAsSeries(data0,true);
   int a;
   a=CopyBuffer(h,0,0,count,data0);
   IndicatorRelease(h);
   return(a);
  }
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
int Kline::Chaikin(double &data0[],int count,string symbol,ENUM_TIMEFRAMES period,int fast_ma_period,int slow_ma_period,ENUM_MA_METHOD ma_method,ENUM_APPLIED_VOLUME applied_volume)
  {
   int h=iChaikin(symbol,period,fast_ma_period,slow_ma_period,ma_method,applied_volume);
   ArraySetAsSeries(data0,true);
   int a;
   a=CopyBuffer(h,0,0,count,data0);
   IndicatorRelease(h);
   return(a);
  }
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
int Kline::DEMA(double &data0[],int count,string symbol,ENUM_TIMEFRAMES period,int ma_period,int ma_shift,ENUM_APPLIED_PRICE applied_price)
  {
   int h=iDEMA(symbol,period,ma_period,ma_shift,applied_price);
   ArraySetAsSeries(data0,true);
   int a;
   a=CopyBuffer(h,0,0,count,data0);
   IndicatorRelease(h);
   return(a);
  }
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
int Kline::DeMarker(double &data0[],int count,string symbol,ENUM_TIMEFRAMES period,int ma_period)
  {
   int h=iDeMarker(symbol,period,ma_period);
   ArraySetAsSeries(data0,true);
   int a;
   a=CopyBuffer(h,0,0,count,data0);
   IndicatorRelease(h);
   return(a);
  }
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
int Kline::Envelopes(double &data0[],double &data1[],int count,string symbol,ENUM_TIMEFRAMES period,int ma_period,int ma_shift,ENUM_MA_METHOD ma_method,ENUM_APPLIED_PRICE applied_price,double deviation)
  {
   int h=iEnvelopes(symbol,period,ma_period,ma_shift,ma_method,applied_price,deviation);
   ArraySetAsSeries(data0,true);
   ArraySetAsSeries(data1,true);
   int a;
   a=CopyBuffer(h,0,0,count,data0);
   a=CopyBuffer(h,1,0,count,data1);
   IndicatorRelease(h);
   return(a);
  }
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
int Kline::Force(double &data0[],int count,string symbol,ENUM_TIMEFRAMES period,int ma_period,ENUM_MA_METHOD ma_method,ENUM_APPLIED_VOLUME applied_volume)
  {
   int h=iForce(symbol,period,ma_period,ma_method,applied_volume);
   ArraySetAsSeries(data0,true);
   int a;
   a=CopyBuffer(h,0,0,count,data0);
   IndicatorRelease(h);
   return(a);
  }
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
int Kline::FrAMA(double &data0[],int count,string symbol,ENUM_TIMEFRAMES period,int ma_period,int ma_shift,ENUM_APPLIED_PRICE applied_price)
  {
   int h=iFrAMA(symbol,period,ma_period,ma_shift,applied_price);
   ArraySetAsSeries(data0,true);
   int a;
   a=CopyBuffer(h,0,0,count,data0);
   IndicatorRelease(h);
   return(a);
  }
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
int Kline::Fractals(double &data0[],double &data1[],int count,string symbol,ENUM_TIMEFRAMES period)
  {
   int h=iFractals(symbol,period);
   ArraySetAsSeries(data0,true);
   ArraySetAsSeries(data1,true);
   int a;
   a=CopyBuffer(h,0,0,count,data0);
   a=CopyBuffer(h,1,0,count,data1);
   IndicatorRelease(h);
   return(a);
  }
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
int Kline::Gator(double &data0[],double &data1[],int count,string symbol,ENUM_TIMEFRAMES period,int jaw_period,int jaw_shift,int teeth_period,int teeth_shift,int lips_period,int lips_shift,ENUM_MA_METHOD ma_method,ENUM_APPLIED_PRICE applied_price)
  {
   int h=iGator(symbol,period,jaw_period,jaw_shift,teeth_period,teeth_shift,lips_period,lips_shift,ma_method,applied_price);
   ArraySetAsSeries(data0,true);
   ArraySetAsSeries(data1,true);
   int a;
   a=CopyBuffer(h,0,0,count,data0);
   a=CopyBuffer(h,1,0,count,data1);
   IndicatorRelease(h);
   return(a);
  }
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
int Kline::Ichimoku(double &data0[],double &data1[],double &data2[],double &data3[],double &data4[],int count,string symbol,ENUM_TIMEFRAMES period,int tenkan_sen,int kijun_sen,int senkou_span_b)
  {
   int h=iIchimoku(symbol,period,tenkan_sen,kijun_sen,senkou_span_b);
   ArraySetAsSeries(data0,true);
   ArraySetAsSeries(data1,true);
   ArraySetAsSeries(data2,true);
   ArraySetAsSeries(data3,true);
   ArraySetAsSeries(data4,true);
   int a;
   a=CopyBuffer(h,0,0,count,data0);
   a=CopyBuffer(h,1,0,count,data1);
   a=CopyBuffer(h,2,0,count,data2);
   a=CopyBuffer(h,3,0,count,data3);
   a=CopyBuffer(h,4,0,count,data4);
   IndicatorRelease(h);
   return(a);
  }
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
int Kline::MACD(double &data0[],double &data1[],int count,string symbol,ENUM_TIMEFRAMES period,int fast_ema_period,int slow_ema_period,int signal_period,ENUM_APPLIED_PRICE applied_price)
  {
   int h=iMACD(symbol,period,fast_ema_period,slow_ema_period,signal_period,applied_price);
   ArraySetAsSeries(data0,true);
   ArraySetAsSeries(data1,true);
   int a;
   a=CopyBuffer(h,0,0,count,data0);
   a=CopyBuffer(h,1,0,count,data1);
   IndicatorRelease(h);
   return(a);
  }
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
int Kline::MFI(double &data0[],int count,string symbol,ENUM_TIMEFRAMES period,int ma_period,ENUM_APPLIED_VOLUME applied_volume)
  {
   int h=iMFI(symbol,period,ma_period,applied_volume);
   ArraySetAsSeries(data0,true);
   int a;
   a=CopyBuffer(h,0,0,count,data0);
   IndicatorRelease(h);
   return(a);
  }
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
int Kline::MA(double            &data0[],
              int count,//获取几个值
              string               symbol,            // 交易品种名称 
              ENUM_TIMEFRAMES      period,            // 周期 
              int                  ma_period,         // 平均周期 
              int                  ma_shift,          // 平移 
              ENUM_MA_METHOD       ma_method,         // 平滑类型 
              ENUM_APPLIED_PRICE   applied_price      // 价格或者处理程序类型 
              )
  {
   int ma_h=iMA(symbol,period,ma_period,ma_shift,ma_method,applied_price);
   ArraySetAsSeries(data0,true);
   int a;
   a=CopyBuffer(ma_h,0,0,count,data0);
//释放句柄
   IndicatorRelease(ma_h);
   return(a);
  }
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
int Kline::Momentum(double &data0[],int count,string symbol,ENUM_TIMEFRAMES period,int mom_period,ENUM_APPLIED_PRICE applied_price)
  {
   int h=iMomentum(symbol,period,mom_period,applied_price);
   ArraySetAsSeries(data0,true);
   int a;
   a=CopyBuffer(h,0,0,count,data0);
   IndicatorRelease(h);
   return(a);
  }
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
int Kline::OBV(double &data0[],int count,string symbol,ENUM_TIMEFRAMES period,ENUM_APPLIED_VOLUME applied_volume)
  {
   int h=iOBV(symbol,period,applied_volume);
   ArraySetAsSeries(data0,true);
   int a;
   a=CopyBuffer(h,0,0,count,data0);
   IndicatorRelease(h);
   return(a);
  }
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
int Kline::OsMA(double &data0[],int count,string symbol,ENUM_TIMEFRAMES period,int fast_ema_period,int slow_ema_period,int signal_period,ENUM_APPLIED_PRICE applied_price)
  {
   int h=iOsMA(symbol,period,fast_ema_period,slow_ema_period,signal_period,applied_price);
   ArraySetAsSeries(data0,true);
   int a;
   a=CopyBuffer(h,0,0,count,data0);
   IndicatorRelease(h);
   return(a);
  }
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
int Kline::RSI(double &data0[],int count,string symbol,ENUM_TIMEFRAMES period,int ma_period,ENUM_APPLIED_PRICE applied_price)
  {
   int h=iRSI(symbol,period,ma_period,applied_price);
   ArraySetAsSeries(data0,true);
   int a;
   a=CopyBuffer(h,0,0,count,data0);
   IndicatorRelease(h);
   return(a);
  }
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
int Kline::RVI(double &data0[],double &data1[],int count,string symbol,ENUM_TIMEFRAMES period,int ma_period)
  {
   int h=iRVI(symbol,period,ma_period);
   ArraySetAsSeries(data0,true);
   ArraySetAsSeries(data1,true);
   int a;
   a=CopyBuffer(h,0,0,count,data0);
   a=CopyBuffer(h,1,0,count,data1);
   IndicatorRelease(h);
   return(a);
  }
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
int Kline::SAR(double &data0[],int count,string symbol,ENUM_TIMEFRAMES period,double step,double maximum)
  {
   int h=iSAR(symbol,period,step,maximum);
   ArraySetAsSeries(data0,true);
   int a;
   a=CopyBuffer(h,0,0,count,data0);
   IndicatorRelease(h);
   return(a);
  }
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
int Kline::StdDev(double &data0[],int count,string symbol,ENUM_TIMEFRAMES period,int ma_period,int ma_shift,ENUM_MA_METHOD ma_method,ENUM_APPLIED_PRICE applied_price)
  {
   int h=iStdDev(symbol,period,ma_period,ma_shift,ma_method,applied_price);
   ArraySetAsSeries(data0,true);
   int a;
   a=CopyBuffer(h,0,0,count,data0);
   IndicatorRelease(h);
   return(a);
  }
//+------------------------------------------------------------------+
//|    The buffer numbers: 0 - MAIN_LINE, 1 - SIGNAL_LINE.                                                              |
//+------------------------------------------------------------------+
int Kline::Stochastic(double &data0[],double &data1[],int count,string symbol,ENUM_TIMEFRAMES period,int Kperiod,int Dperiod,int slowing,ENUM_MA_METHOD ma_method,ENUM_STO_PRICE price_field)
  {
   int h=iStochastic(symbol,period,Kperiod,Dperiod,slowing,ma_method,price_field);
   ArraySetAsSeries(data0,true);
   ArraySetAsSeries(data1,true);
   int a;
   a=CopyBuffer(h,0,0,count,data0);
   a=CopyBuffer(h,1,0,count,data1);
   IndicatorRelease(h);
   return(a);
  }
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
int Kline::TEMA(double &data0[],int count,string symbol,ENUM_TIMEFRAMES period,int ma_period,int ma_shift,ENUM_APPLIED_PRICE applied_price)
  {
   int h=iTEMA(symbol,period,ma_period,ma_shift,applied_price);
   ArraySetAsSeries(data0,true);
   int a;
   a=CopyBuffer(h,0,0,count,data0);
   IndicatorRelease(h);
   return(a);
  }
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
int Kline::TriX(double &data0[],int count,string symbol,ENUM_TIMEFRAMES period,int ma_period,ENUM_APPLIED_PRICE applied_price)
  {
   int h=iTriX(symbol,period,ma_period,applied_price);
   ArraySetAsSeries(data0,true);
   int a;
   a=CopyBuffer(h,0,0,count,data0);
   IndicatorRelease(h);
   return(a);
  }
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
int Kline::VIDyA(double &data0[],int count,string symbol,ENUM_TIMEFRAMES period,int cmo_period,int ema_period,int ma_shift,ENUM_APPLIED_PRICE applied_price)
  {
   int h=iVIDyA(symbol,period,cmo_period,ema_period,ma_shift,applied_price);
   ArraySetAsSeries(data0,true);
   int a;
   a=CopyBuffer(h,0,0,count,data0);
   IndicatorRelease(h);
   return(a);
  }
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
int Kline::Volumes(double &data0[],int count,string symbol,ENUM_TIMEFRAMES period,ENUM_APPLIED_VOLUME applied_volume)
  {
   int h=iVolumes(symbol,period,applied_volume);
   ArraySetAsSeries(data0,true);
   int a;
   a=CopyBuffer(h,0,0,count,data0);
   IndicatorRelease(h);
   return(a);
  }
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
int Kline::ZigZag(double &data0[],int count,string symbol,ENUM_TIMEFRAMES period,int ExtDepth,int ExtDeviation,int ExtBackstep)
  {
   int h=iCustom(symbol,period,"Examples\\ZigZag",ExtDepth,ExtDeviation,ExtBackstep);
   ArraySetAsSeries(data0,true);
   int a;
   a=CopyBuffer(h,0,0,count,data0);
   IndicatorRelease(h);
   return(a);
  }
//+------------------------------------------------------------------+

如果您发现本文对你有所帮助,如果您认为其他人也可能受益,请把它分享出去。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 199,830评论 5 468
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 83,992评论 2 376
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 146,875评论 0 331
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 53,837评论 1 271
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 62,734评论 5 360
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,091评论 1 277
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,550评论 3 390
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,217评论 0 254
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,368评论 1 294
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,298评论 2 317
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,350评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,027评论 3 315
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,623评论 3 303
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,706评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 30,940评论 1 255
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,349评论 2 346
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 41,936评论 2 341

推荐阅读更多精彩内容