Beispiel #1
0
        public override void OpenPrice(OpenPriceInfo oInfo)
        {
            StringBuilder sb = new StringBuilder();

            oInfo.Dump(sb);
            Console.Out.Write(sb);
        }
Beispiel #2
0
        /*   -----------------------------------------------------------   */

        public override void OpenPrice(OpenPriceInfo oInfo)
        {
            StringBuilder sb = new StringBuilder();

            oInfo.Dump(sb);
            debug(sb);
        }
			public override void OpenPrice(OpenPriceInfo info)
			{
				_receiver.AddLog(LogLevels.Debug, info.DumpableToString);
				_client.Level1.SafeInvoke(info.Symbol, info.Exchange, Level1Fields.OpenPrice, (decimal)info.Price, RithmicUtils.ToTime(info.Ssboe, info.Usecs));
			}
Beispiel #4
0
 public override void OpenPrice(OpenPriceInfo oInfo)
 {
 }
Beispiel #5
0
 public override void OpenPrice(OpenPriceInfo oInfo)
      {
      StringBuilder sb = new StringBuilder();
      oInfo.Dump(sb);
      Console.Out.Write(sb);
      }
Beispiel #6
0
          public override void OpenPrice(OpenPriceInfo oInfo)
               {

               }
 public override void OpenPrice(OpenPriceInfo info)
 {
     _receiver.AddLog(LogLevels.Debug, info.DumpableToString);
     _client.Level1.SafeInvoke(info.Symbol, info.Exchange, Level1Fields.OpenPrice, (decimal)info.Price, RithmicUtils.ToTime(info.Ssboe, info.Usecs));
 }
Beispiel #8
0
          /*   -----------------------------------------------------------   */

          public override void OpenPrice(OpenPriceInfo oInfo)
               {
               StringBuilder sb = new StringBuilder();
               oInfo.Dump(sb);
               debug(sb);
               }