Sample SAR Trailing Stop.cs
When I compile the example in the desktop platform, I get a warning CS0618 that ModifyPosition(Position, double?, double?) is obsolete
Discussion from 2024 had information that documentation will be fixed soon. It is half of 2026 and documentation was not updated... :-(
I am not expert and documentation for ModifyPositiuon is "obsolete" but I assume that code
ModifyPosition(position, newStopLoss, null);
should be changed to
ModifyPosition(position, newStopLoss, null, ProtectionType.Absolute);
Please, review examples, and update the documentation...
Other issue is that I just cannot easily select and copy warning/error from Windows desktop platform to the clipboard... :-( Once fixed, this will allow me to copy full error/warning message to the bug reports or AI prompts...
Sample SAR Trailing Stop.cs
When I compile the example in the desktop platform, I get a warning
CS0618that ModifyPosition(Position, double?, double?) is obsoleteDiscussion from 2024 had information that documentation will be fixed soon. It is half of 2026 and documentation was not updated... :-(
I am not expert and documentation for
ModifyPositiuonis "obsolete" but I assume that codeshould be changed to
Please, review examples, and update the documentation...
Other issue is that I just cannot easily select and copy warning/error from Windows desktop platform to the clipboard... :-( Once fixed, this will allow me to copy full error/warning message to the bug reports or AI prompts...