1 LAN, 2 WAN/ISPs, load balancing/failover

I believe I have a function load balance/failover scenario using the bandwidth monitor and marking packets. My current configuration has port 1 as the LAN port (192.168.200.xxx) and ports 3 and 4 for ISP1 and ISP2 respectively. When I have my laptop connected to port 2, it looks like I can failover between the two ports while on the Internet. When I give my laptop a static IP address of 192.168.200.5 with 192.168.200.1 as the gateway, I can no longer reach the Internet at all. any suggestions? was going to paste my config here, but it gets mangled. hopefully someone would be nice enough to check out my config below:

/ip firewall address-list
add address=65.xxx.xxx.0/24 list=Connected
add address=100.xxx.xxx.0/24 list=Connected
add address=192.168.200.0/24 list=Connected
add address=192.168.200.0/24 list=LAN
/ip firewall filter
add chain=input comment=“defconf: accept ICMP” protocol=icmp
add chain=input comment=“defconf: accept establieshed,related” connection-state=established,related
add action=drop chain=input comment=“defconf: drop all from WAN” in-interface=LAN
add action=fasttrack-connection chain=forward comment=“defconf: fasttrack” connection-state=established,related
add chain=forward comment=“defconf: accept established,related” connection-state=established,related
add action=drop chain=forward comment=“defconf: drop invalid” connection-state=invalid
add action=drop chain=forward comment=“defconf: drop all from WAN not DSTNATed” connection-nat-state=!dstnat connection-state=new in-interface=LAN
/ip firewall mangle
add chain=prerouting dst-address-list=Connected src-address-list=Connected
add action=mark-connection chain=input comment=“WAN → ROS” connection-mark=no-mark in-interface=Verizon new-connection-mark=WAN1->ROS
add action=mark-connection chain=input connection-mark=no-mark in-interface=VerizonFIOS new-connection-mark=WAN2->ROS
add action=mark-routing chain=output connection-mark=WAN1->ROS new-routing-mark=Verizon_Route
add action=mark-routing chain=output connection-mark=WAN2->ROS new-routing-mark=VerizonFIOS_Route
add action=mark-connection chain=forward comment=“WAN → LAN” connection-mark=no-mark in-interface=Verizon new-connection-mark=WAN1->LANs
add action=mark-connection chain=forward connection-mark=no-mark in-interface=VerizonFIOS new-connection-mark=WAN2->LANs
add action=mark-routing chain=prerouting connection-mark=WAN1->LANs new-routing-mark=Verizon_Route src-address-list=LAN
add action=mark-routing chain=prerouting connection-mark=WAN2->LANs new-routing-mark=VerizonFIOS_Route src-address-list=LAN
add action=mark-connection chain=prerouting comment=“LAN → WAN” connection-mark=no-mark dst-address-list=!Connected dst-address-type=!local
new-connection-mark=LAN->WAN src-address-list=LAN
add action=mark-routing chain=prerouting comment=“Load-Balancing here” connection-mark=LAN->WAN new-routing-mark=Verizon_Route src-address-list=LAN
add action=mark-connection chain=prerouting comment=“Stick connections after this” connection-mark=LAN->WAN new-connection-mark=Sticky_Verizon
routing-mark=Verizon_Route
add action=mark-connection chain=prerouting connection-mark=LAN->WAN new-connection-mark=Sticky_VerizonFIOS routing-mark=VerizonFIOS_Route
add action=mark-routing chain=prerouting connection-mark=Sticky_Verizon new-routing-mark=Verizon_Route src-address-list=LAN
add action=mark-routing chain=prerouting connection-mark=Sticky_VerizonFIOS new-routing-mark=VerizonFIOS_Route src-address-list=LAN
/ip firewall nat
add action=masquerade chain=srcnat comment=“defconf: masquerade” out-interface=LAN
add action=masquerade chain=srcnat out-interface=Verizon
add action=masquerade chain=srcnat out-interface=VerizonFIOS

Use code blocks to enclose the config (see below) and post a full export, IP addresses and interfaces are missing.

/ip firewall address-list
add address=65.xxx.xxx.0/24 list=Connected
add address=100.xxx.xxx.0/24 list=Connected
add address=192.168.200.0/24 list=Connected
add address=192.168.200.0/24 list=LAN
/ip firewall filter
add chain=input comment="defconf: accept ICMP" protocol=icmp
add chain=input comment="defconf: accept establieshed,related" connection-state=established,related
add action=drop chain=input comment="defconf: drop all from WAN" in-interface=LAN
add action=fasttrack-connection chain=forward comment="defconf: fasttrack" connection-state=established,related
add chain=forward comment="defconf: accept established,related" connection-state=established,related
add action=drop chain=forward comment="defconf: drop invalid" connection-state=invalid
add action=drop chain=forward comment="defconf: drop all from WAN not DSTNATed" connection-nat-state=!dstnat connection-state=new in-interface=LAN
/ip firewall mangle
add chain=prerouting dst-address-list=Connected src-address-list=Connected
add action=mark-connection chain=input comment="WAN -> ROS" connection-mark=no-mark in-interface=Verizon new-connection-mark=WAN1->ROS
add action=mark-connection chain=input connection-mark=no-mark in-interface=VerizonFIOS new-connection-mark=WAN2->ROS
add action=mark-routing chain=output connection-mark=WAN1->ROS new-routing-mark=Verizon_Route
add action=mark-routing chain=output connection-mark=WAN2->ROS new-routing-mark=VerizonFIOS_Route
add action=mark-connection chain=forward comment="WAN -> LAN" connection-mark=no-mark in-interface=Verizon new-connection-mark=WAN1->LANs
add action=mark-connection chain=forward connection-mark=no-mark in-interface=VerizonFIOS new-connection-mark=WAN2->LANs
add action=mark-routing chain=prerouting connection-mark=WAN1->LANs new-routing-mark=Verizon_Route src-address-list=LAN
add action=mark-routing chain=prerouting connection-mark=WAN2->LANs new-routing-mark=VerizonFIOS_Route src-address-list=LAN
add action=mark-connection chain=prerouting comment="LAN -> WAN" connection-mark=no-mark dst-address-list=!Connected dst-address-type=!local \
new-connection-mark=LAN->WAN src-address-list=LAN
add action=mark-routing chain=prerouting comment="Load-Balancing here" connection-mark=LAN->WAN new-routing-mark=Verizon_Route src-address-list=LAN
add action=mark-connection chain=prerouting comment="Stick connections after this" connection-mark=LAN->WAN new-connection-mark=Sticky_Verizon \
routing-mark=Verizon_Route
add action=mark-connection chain=prerouting connection-mark=LAN->WAN new-connection-mark=Sticky_VerizonFIOS routing-mark=VerizonFIOS_Route
add action=mark-routing chain=prerouting connection-mark=Sticky_Verizon new-routing-mark=Verizon_Route src-address-list=LAN
add action=mark-routing chain=prerouting connection-mark=Sticky_VerizonFIOS new-routing-mark=VerizonFIOS_Route src-address-list=LAN
/ip firewall nat
add action=masquerade chain=srcnat comment="defconf: masquerade" out-interface=LAN
add action=masquerade chain=srcnat out-interface=Verizon
add action=masquerade chain=srcnat out-interface=VerizonFIOS