Is it possible to change the default template when opening a new project?

 

Hello,

I was wondering if it is possible to change the default template, when opening a new project.


for example it opens like this on default:

//+------------------------------------------------------------------+
//|                                                    |
//|                                  Copyright 2022, MetaQuotes Ltd. |
//|                                             https://www.mql5.com |
//+------------------------------------------------------------------+
#property copyright "Copyright 2022, MetaQuotes Ltd."
#property link      "https://www.mql5.com"
#property version   "1.00"
//+------------------------------------------------------------------+
//| Expert initialization function                                   |
//+------------------------------------------------------------------+
int OnInit()
  {
//---
   
//---
   return(INIT_SUCCEEDED);
  }
//+------------------------------------------------------------------+
//| Expert deinitialization function                                 |
//+------------------------------------------------------------------+
void OnDeinit(const int reason)
  {
//---
   
  }
//+------------------------------------------------------------------+
//| Expert tick function                                             |
//+------------------------------------------------------------------+
void OnTick()
  {
//---
   
  }
//+------------------------------------------------------------------+


after the change it would open like this on default:

//+------------------------------------------------------------------+
//|                                                  |
//|                                  Copyright 2022, MetaQuotes Ltd. |
//|                                             https://www.mql5.com |
//+------------------------------------------------------------------+
#property copyright "Copyright 2022, MetaQuotes Ltd."
#property link      "https://www.mql5.com"
#property version   "1.00"
#property strict

stuff here

some more stuff

int OnInit(){
   even some stuff here
   return(INIT_SUCCEEDED);
  }

void OnDeinit(const int reason){
  and maybe a little more stuff
  }

void OnTick(){
   stuff 
   stuff
   stuff
   more stuff
  }


is that possible? if so, how?


thanks.

Reason: