Hi All,
According to the last post on the Google Ads Developer Blog the target spend strategy will be deprecated by the 31 of July.
My question is How can I use mu budgets to specify how much I'd like to spend for maximize clicks?
You can find bellow how I'm using the target spend as bidding strategy.
Campaign:
BiddingStrategyConfiguration biddingStrategyConfiguration = new BiddingStrategyConfiguration();
if(is_autobid)
{
biddingStrategyConfiguration.biddingStrategyType = BiddingStrategyType.TARGET_SPEND;
}
else
{
if(billing_event == "IMPRESSIONS")
{
biddingStrategyConfiguration.biddingStrategyType = BiddingStrategyType.MANUAL_CPM;
}
else if(billing_event == "LINK_CLICKS")
{
biddingStrategyConfiguration.biddingStrategyType = BiddingStrategyType.MANUAL_CPC;
}
}
campaign.biddingStrategyConfiguration = biddingStrategyConfiguration;
AdGroup:
BiddingStrategyConfiguration biddingStrategyConfiguration = new BiddingStrategyConfiguration();
if (is_autobid == false && billing_event == "IMPRESSIONS")
{
biddingStrategyConfiguration.bids = new Bids[]
{
new CpmBid()
{
bid = new Money()
{
microAmount = long.Parse((bid_amount * 1000000).ToString())
}
}
};
}
else if (is_autobid == false && billing_event == "LINK_CLICKS")
{
biddingStrategyConfiguration.bids = new Bids[]
{
new CpcBid()
{
bid = new Money()
{
microAmount = long.Parse((bid_amount * 1000000).ToString())
}
}
};
}
is_autobid, billing_event and bid_amount are local variable I'm using into my code.
Many thanks,
Zied