Dual WAN- No load balance, No failover

Hi.
How to VLAN 101 and VLAN 102 use ISP-1.
Vlan 103 andVlan 104 use ISP-2
please helm me.

# 2024-01-23 10:02:52 by RouterOS 7.13.2
# model = CCR2116-12G-4S+

/interface ethernet
set [ find default-name=ether1 ] comment="ISP-1"
set [ find default-name=ether2 ] comment="ISP-2"
set [ find default-name=ether4 ] comment="Kerio Control"
set [ find default-name=ether6 ] comment="TRUNK - 2"
set [ find default-name=ether7 ] comment="TRUNK - 3"
set [ find default-name=ether8 ] comment="TRUNK - 4"

/interface vlan
add interface=ether8 name="GUEST NETWORK - VLAN 104" vlan-id=104
add interface=ether8 name="MOBILE NETWORK - VLAN 103" vlan-id=103
add interface=ether6 name="Users LAN NETWORK - VLAN 101" vlan-id=101
add interface=ether7 name="Users WLAN NETWORK - VLAN 102" vlan-id=102

/ip pool
add name="Users LAN Pool" ranges=10.10.12.20-10.10.13.250
add name="Mobile Pool" ranges=10.0.0.20-10.0.1.250
add name="Guest Pool" ranges=10.1.0.20-10.1.0.250
add name="Users WLAN Pool" ranges=10.10.9.10-10.10.9.250

/ip dhcp-server
add address-pool="Users LAN Pool" interface="Users LAN NETWORK - VLAN 101" lease-time=8h name="Users LAN DHCP SERVER"
add address-pool="Mobile Pool" interface="MOBILE NETWORK - VLAN 103" name="MOBILE DHCP SERVER"
add address-pool="Guest Pool" interface="GUEST NETWORK - VLAN 104" name="GUEST DHCP SERVER"
add address-pool="Users WLAN Pool" interface="Users WLAN NETWORK - VLAN 102" lease-time=8h name="Users WLAN DHCP SERVER"

/ip address
add address=10.10.12.1/23 comment="Users LAN SUBNET" interface="Users LAN NETWORK - VLAN 101" network=10.10.12.0
add address=10.0.0.1/23 comment="MOBILE SUBNET" interface="MOBILE NETWORK - VLAN 103" network=10.0.0.0
add address=10.1.0.1/24 comment="GUEST SUBNET" interface="GUEST NETWORK - VLAN 104" network=10.1.0.0
add address=172.16.2.3/29 comment="ISP-2" interface=ether2 network=172.16.2.0
add address=10.10.9.1/24 comment="Users WLAN SUBNET" interface="Users WLAN NETWORK - VLAN 102" network=10.10.9.0
add address=192.168.4.10/16 comment="Kerio Control" interface=ether4 network=192.168.0.0
add address=172.16.1.3/29 comment="ISP-1" interface=ether1 network=172.16.1.0

/ip dhcp-server network
add address=10.0.0.0/23 comment="MOBILE NETWORK" dns-server=8.8.8.8,8.8.4.4 gateway=10.0.0.1
add address=10.1.0.0/24 comment="GUEST NETWORK" dns-server=8.8.8.8,8.8.4.4 gateway=10.1.0.1
add address=10.10.9.0/24 comment="Users WLAN NETWORK" dns-server=8.8.8.8,8.8.4.4 gateway=10.10.9.1
add address=10.10.12.0/23 comment="Users LAN NETWORK" dns-server=8.8.8.8,8.8.4.4 gateway=10.10.12.1

/ip dns
set servers=8.8.8.8,8.8.4.4

/ip firewall nat
add action=masquerade chain=srcnat comment="Users Lan NAT" dst-address=192.168.0.0/16 out-interface=ether4 src-address=10.10.12.0/23
add action=masquerade chain=srcnat comment="Users Wlan NAT" dst-address=192.168.0.0/16 out-interface=ether4 src-address=10.10.9.0/24
add action=masquerade chain=srcnat comment="ISP-2" out-interface=ether2
add action=masquerade chain=srcnat comment="ISP-1" out-interface=ether1

/ip route
add comment="Users Lan" disabled=no distance=1 dst-address=10.10.12.0/23 gateway=192.168.4.10 pref-src="" routing-table=main scope=30 \
    suppress-hw-offload=no target-scope=10
add disabled=no distance=1 dst-address=192.168.0.0/16 gateway=192.168.4.10 pref-src="" routing-table=main scope=30 \
    suppress-hw-offload=no target-scope=10
add comment="Users WLan" disabled=no distance=1 dst-address=10.10.9.0/24 gateway=192.168.4.10 pref-src="" routing-table=main scope=30 \
    suppress-hw-offload=no target-scope=10
add comment="ISP-1" disabled=no distance=1 dst-address=0.0.0.0/0 gateway=172.16.1.1 pref-src="" routing-table=main \
    scope=30 suppress-hw-offload=no target-scope=10
add comment="ISP-2" disabled=no distance=1 dst-address=0.0.0.0/0 gateway=172.16.2.1 pref-src="" routing-table=main scope=\
    30 suppress-hw-offload=no target-scope=10

Something like what is discussed in this post?
http://forum.mikrotik.com/t/dual-wan-directing-from-1-vlan-to-1-wan/165027/1

Are ISP1 and ISP2, fixed static public IPs, or dynamic WANIPs…