I want to create a dual Y-axis column chart instead of 2 separate column charts.

Here is the code for the dual t-axis
google.charts.load('current', {'packages':['corechart', 'bar']});
google.charts.setOnLoadCallback(drawVisualization);
//////////////////////// Drawing the graph //////////////////////
function drawVisualization() {
var data = new google.visualization.DataTable();
data.addColumn('string', 'Couple');
data.addColumn('number', 'profit');
data.addColumn('number','trades');
for(var i = 0; i < datum_b.length; i++){
datum_b[i].profit=parseFloat(datum_b[i].profit);
datum_c[i].trades=parseFloat(datum_c[i].trades);
var obj_b = datum_b[i];
var obj_c = datum_c[i];
data.addRow([obj_b.item, obj_b.profit, obj_c.trades]);
}
var options = {
title :'Profit / Loss and trades count of all traded couples',
series: {
0: {axis: 'Balance'},
1: {axis: 'Trades'}
},
axes: {
y: {
'Balance': {label: 'Balance'},
'Trades': {label: 'Trades'}
},
x: {title: 'Traded Couples ', direction: 1,
slantedText: true,
slantedTextAngle: 45},
colors:['navy', 'pink']
},
animation: {
duration: 1000,
easing: 'out',
startup: true},
bar: { groupWidth: '80%' },
barVisibilityThreshold :-1,
seriesType: 'bars'};
var chart = new google.charts.Bar(document.getElementById('chart_div'));
chart.draw(data, options);
}//END CHART 1
</script>
The dual Y-axis doesn't give slanted text on the X-axis
Can I change the color of the text of each Y-axis to fit the color of its columns?