You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
LRESULT MyWindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam) { LRESULT result =0; switch(uMsg) { case WM_SIZE: { // int width = int(lParam); // Macro to get the low-order word. // int height = int(lParam); // Macro to get the high-order word. // Print("On Window Proc"); // Respond to the message: // OnSize(hwnd, (unsigned int)wParam, width, height); Print("WM_SIZE"); } break; case WM_DESTROY: { Print("WM_DESTROY"); } break; case WM_CLOSE: { Print("WM_CLOSE"); } break; case WM_ACTIVATEAPP: { Print("WM_ACTIVATEAPP"); } break; default: { Print("Default Handle"); //result =DefWindowProc(hwnd, uMsg, wParam, lParam); } break; } return result;Above is the int OnInit() of the Expert Adviser
Your help will be much appreciated.