Skip to content

Commit

Permalink
Update ATSSamplePriceReversalTestHybridAlgo.cs
Browse files Browse the repository at this point in the history
Fixed this 
 Print(string.Format("TradeManagement >> Error >> {0}",  ex.ToString()));
  • Loading branch information
MicroTrendsTom committed Jan 25, 2023
1 parent b4ea041 commit 83edd4e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ public override void TradeManagement(double lastPrice)
}
catch (Exception ex)
{
Print(string.Format("TradeManagement >> Error >> {0}" + ex.ToString()));
Print(string.Format("TradeManagement >> Error >> {0}", ex.ToString()));
}


Expand Down

0 comments on commit 83edd4e

Please sign in to comment.