MT5 Crosshair instead of cursor

 
Hello please if any one can help me i want to run MT5 Crosshair instead of cursor,How can i do that,Or any indicator or code? 
 

https://www.mql5.com/en/code/22164


If there is anything else it would be highly appreciated.

Easy Canvas
Easy Canvas
  • www.mql5.com
The library and iCanvas class simplify writing programs using Canvas.
 
To activate the cross-hair, you press control+F
 
Krisztián Kriston #:

If there is anything else it would be highly appreciated.

Форум по трейдингу, автоматическим торговым системам и тестированию торговых стратегий

Как программно включать режим CROSSHAIR

fxsaber, 2024.11.21 13:19

#include <fxsaber\MultiTester\MTTester.mqh> // https://www.mql5.com/ru/code/26132

bool SetCrossHair( const bool Enable = true )
{
  return(user32::SendMessageW(MTTESTER::GetTerminalHandle(), WM_COMMAND, 0XCD78 + Enable, 0));
}