MTU on LTE

Can not install MTU on lte. After reboot, the setting is reset.
Device Information:

[admin@MikroTik] > /system routerboard print 
       routerboard: yes
        board-name: LtAP mini
             model: RB912R-2nD
     serial-number: 8F0009454CC4
     firmware-type: qca9531L
  factory-firmware: 6.42.1
  current-firmware: 6.42.6
  upgrade-firmware: 6.42.6

Show mtu on interface lte:

[admin@MikroTik] > /interface lte print      
Flags: X - disabled, R - running 
 0  R name="lte1" mtu=1480 mac-address=AC:FF:FF:00:00:00 apn-profiles=polycomm network-mode=3g,lte

Set and check MTU:

[admin@MikroTik] > interface lte set lte1 mtu=1500
[admin@MikroTik] > /interface lte print           
Flags: X - disabled, R - running 
 0    name="lte1" mtu=1500 mac-address=AC:FF:FF:00:00:00 apn-profiles=polycomm network-mode=3g,lte 
[admin@MikroTik] > interface lte export 
# jan/02/1970 00:43:25 by RouterOS 6.42.6
# software id = 4JLJ-7L8G
#
# model = RB912R-2nD
# serial number = 8F0009454CC4
/interface lte apn
add apn=polycomm.msk default-route-distance=1 name=polycomm
/interface lte
set [ find ] apn-profiles=polycomm mac-address=AC:FF:FF:00:00:00 mtu=1500 name=lte1 network-mode=3g,lte

Reboot and check:

[admin@MikroTik] > /interface lte print      
Flags: X - disabled, R - running 
 0  R name="lte1" mtu=1480 mac-address=AC:FF:FF:00:00:00 apn-profiles=polycomm network-mode=3g,lte

Same for me, but to be honest I have no idea how to detect correct MTU for 4G provider.

In LTE there are many layers between L3 seen by users/subscribers and raw radio (OFDM), many more than in e.g. WiFi. Many of them (not all) have their own framing structure and flow protocols (HARQ, RLC, RRC, …) which adapt quickly to changing radio conditions. All of that is transparent to users. And all of that affects throughput and latency much more than MTU setting of 1500 VS 1480.
There are similar mechanisms in 3G (HSPA) as well.

Besides, MTU is subject to negotiation between data card and network upon connection (EPS bearer establishment in LTE or PDP context activation in 3G) and is usually set to optimum value. Therefore it is not wise to force it higher (and not necessary to set it lower) even if it works.

One can imagine that even MNOs want to have MTUs set as high as possible, nobody likes to see many fragmented packets flowing through their network equipment.

In my case (Orange/Poland) MTU 1428 works best. Reached 41mbps download rate, previously 33-37mbps.

Unfortunately I have no idea how to get proof that this value is optimal.

In most LTE networks (and other MNOs as well) traffic fluctuates wildly. And differences are both on hourly basis (late night VS noon VS evening) as well as on daily basis (week days VS weekend).
To verify that any change made makes things better, one should monitor and statistically evaluate performance through longer period of time, at least a week.