-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaverage-position-bidding.js
406 lines (321 loc) · 14.6 KB
/
average-position-bidding.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
// ID: fc0e24f9577d1f8f2279b1e5d4ee50f9
/**
*
* Average Position Bidding Tool
*
* This script changes keyword bids so that they target specified positions,
* based on recent performance.
*
* Version: 1.5
* Updated 2015-09-28 to correct for report column name changes
* Updated 2016-02-05 to correct label reading, add extra checks and
* be able to adjust maximum bid increases and decreases separately
* Updated 2016-08-30 to correct label reading from reports
* Updated 2016-09-14 to update keywords in batches
* Updated 2016-10-26 to avoid DriveApp bug
* Google AdWords Script maintained on brainlabsdigital.com
*
*/
// Options
var maxBid = 3.00;
// Bids will not be increased past this maximum.
var minBid = 0.15;
// Bids will not be decreased below this minimum.
var firstPageMaxBid = 0.90;
// The script avoids reducing a keyword's bid below its first page bid estimate. If you think
// Google's first page bid estimates are too high then use this to overrule them.
var dataFile = 'AveragePositionData.txt';
// This name is used to create a file in your Google Drive to store today's performance so far,
// for reference the next time the script is run.
var useFirstPageBidsOnKeywordsWithNoImpressions = false;
// If this is true, then if a keyword has had no impressions since the last time the script was run
// its bid will be increased to the first page bid estimate (or the firsPageMaxBid if that is smaller).
// If this is false, keywords with no recent impressions will be left alone.
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
// Advanced Options
var bidIncreaseProportion = 0.2;
var bidDecreaseProportion = 0.2;
var targetPositionTolerance = 0.3;
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
function main() {
var fieldJoin = ',';
var lineJoin = '$';
var idJoin = '#';
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
var files = DriveApp.getFilesByName(dataFile);
if (!files.hasNext()) {
var file = DriveApp.createFile(dataFile, '\n');
Logger.log("File '" + dataFile + "' has been created.");
} else {
var file = files.next();
if (files.hasNext()) {
Logger.log("Error - more than one file named '" + dataFile + "'");
return;
}
Logger.log("File '" + dataFile + "' has been read.");
}
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
var labelIds = [];
var labelIterator = AdWordsApp.labels()
.withCondition('KeywordsCount > 0')
.withCondition("LabelName CONTAINS_IGNORE_CASE 'Position '")
.get();
while (labelIterator.hasNext()) {
var label = labelIterator.next();
if (label.getName().substr(0, 'position '.length).toLowerCase() == 'position ') {
labelIds.push(label.getId());
}
}
if (labelIds.length == 0) {
Logger.log('No position labels found.');
return;
}
Logger.log(labelIds.length + ' position labels have been found.');
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
var keywordData = {
// UniqueId1: {LastHour: {Impressions: , AveragePosition: }, ThisHour: {Impressions: , AveragePosition: },
// CpcBid: , FirstPageCpc: , MaxBid, MinBid, FirstPageMaxBid, PositionTarget: , CurrentAveragePosition:,
// Criteria: }
};
var ids = [];
var uniqueIds = [];
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
var report = AdWordsApp.report(
'SELECT Id, Criteria, AdGroupId, AdGroupName, CampaignName, Impressions, AveragePosition, CpcBid, FirstPageCpc, Labels, BiddingStrategyType '
+ 'FROM KEYWORDS_PERFORMANCE_REPORT '
+ 'WHERE Status = ENABLED AND AdGroupStatus = ENABLED AND CampaignStatus = ENABLED '
+ 'AND LabelIds CONTAINS_ANY [' + labelIds.join(',') + '] '
+ 'AND AdNetworkType2 = SEARCH '
+ 'AND Device NOT_IN ["HIGH_END_MOBILE"] '
+ 'DURING TODAY'
);
var rows = report.rows();
while (rows.hasNext()) {
var row = rows.next();
if (row.BiddingStrategyType != 'cpc') {
if (row.BiddingStrategyType == 'Enhanced CPC'
|| row.BiddingStrategyType == 'Target search page location'
|| row.BiddingStrategyType == 'Target Outranking Share'
|| row.BiddingStrategyType == 'None'
|| row.BiddingStrategyType == 'unknown') {
Logger.log('Warning: keyword ' + row.Criteria + "' in campaign '" + row.CampaignName
+ "' uses '" + row.BiddingStrategyType + "' rather than manual CPC. This may overrule keyword bids and interfere with the script working.");
} else {
Logger.log('Warning: keyword ' + row.Criteria + "' in campaign '" + row.CampaignName
+ "' uses the bidding strategy '" + row.BiddingStrategyType + "' rather than manual CPC. This keyword will be skipped.");
continue;
}
}
var positionTarget = '';
if (row.Labels.trim() == '--') {
continue;
}
var labels = JSON.parse(row.Labels.toLowerCase()); // Labels are returned as a JSON formatted string
for (var i = 0; i < labels.length; i++) {
if (labels[i].substr(0, 'position '.length) == 'position ') {
var positionTarget = parseFloat(labels[i].substr('position '.length - 1).replace(/,/g, '.'), 10);
break;
}
}
if (positionTarget == '') {
continue;
}
if (integrityCheck(positionTarget) == -1) {
Logger.log("Invalid position target '" + positionTarget + "' for keyword '" + row.Criteria + "' in campaign '" + row.CampaignName + "'");
continue;
}
ids.push(parseFloat(row.Id, 10));
var uniqueId = row.AdGroupId + idJoin + row.Id;
uniqueIds.push(uniqueId);
keywordData[uniqueId] = {};
keywordData[uniqueId].Criteria = row.Criteria;
keywordData[uniqueId].ThisHour = {};
keywordData[uniqueId].ThisHour.Impressions = parseFloat(row.Impressions.replace(/,/g, ''), 10);
keywordData[uniqueId].ThisHour.AveragePosition = parseFloat(row.AveragePosition.replace(/,/g, ''), 10);
keywordData[uniqueId].CpcBid = parseFloat(row.CpcBid.replace(/,/g, ''), 10);
keywordData[uniqueId].FirstPageCpc = parseFloat(row.FirstPageCpc.replace(/,/g, ''), 10);
setPositionTargets(uniqueId, positionTarget);
}
Logger.log(uniqueIds.length + ' labelled keywords found');
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
setBidChange();
setMinMaxBids();
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
var currentHour = parseInt(Utilities.formatDate(new Date(), AdWordsApp.currentAccount().getTimeZone(), 'HH'), 10);
if (currentHour != 0) {
var data = file.getBlob().getDataAsString();
var data = data.split(lineJoin);
for (var i = 0; i < data.length; i++) {
data[i] = data[i].split(fieldJoin);
var uniqueId = data[i][0];
if (keywordData.hasOwnProperty(uniqueId)) {
keywordData[uniqueId].LastHour = {};
keywordData[uniqueId].LastHour.Impressions = parseFloat(data[i][1], 10);
keywordData[uniqueId].LastHour.AveragePosition = parseFloat(data[i][2], 10);
}
}
}
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
findCurrentAveragePosition();
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
// Batch the keyword IDs, as the iterator can't take them all at once
var idBatches = [];
var batchSize = 5000;
for (var i = 0; i < uniqueIds.length; i += batchSize) {
idBatches.push(uniqueIds.slice(i, i + batchSize));
}
Logger.log('Updating keywords');
// Update each batch
for (var i = 0; i < idBatches.length; i++) {
try {
updateKeywords(idBatches[i]);
} catch (e) {
Logger.log('Error updating keywords: ' + e);
Logger.log('Retrying after one minute.');
Utilities.sleep(60000);
updateKeywords(idBatches[i]);
}
}
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
Logger.log('Writing file.');
var content = resultsString();
file.setContent(content);
Logger.log('Finished.');
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
// Functions
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
function integrityCheck(target) {
var n = parseFloat(target, 10);
if (!isNaN(n) && n >= 1) {
return n;
}
return -1;
}
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
function setPositionTargets(uniqueId, target) {
if (target !== -1) {
keywordData[uniqueId].HigherPositionTarget = Math.max(target - targetPositionTolerance, 1);
keywordData[uniqueId].LowerPositionTarget = target + targetPositionTolerance;
} else {
keywordData[uniqueId].HigherPositionTarget = -1;
keywordData[uniqueId].LowerPositionTarget = -1;
}
}
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
function bidChange(uniqueId) {
var newBid = -1;
if (keywordData[uniqueId].HigherPositionTarget === -1) {
return newBid;
}
var cpcBid = keywordData[uniqueId].CpcBid;
var minBid = keywordData[uniqueId].MinBid;
var maxBid = keywordData[uniqueId].MaxBid;
if (isNaN(keywordData[uniqueId].FirstPageCpc)) {
Logger.log("Warning: first page CPC estimate is not a number for keyword '" + keywordData[uniqueId].Criteria + "'. This keyword will be skipped");
return -1;
}
var firstPageBid = Math.min(keywordData[uniqueId].FirstPageCpc, keywordData[uniqueId].FirstPageMaxBid, maxBid);
var currentPosition = keywordData[uniqueId].CurrentAveragePosition;
var higherPositionTarget = keywordData[uniqueId].HigherPositionTarget;
var lowerPositionTarget = keywordData[uniqueId].LowerPositionTarget;
var bidIncrease = keywordData[uniqueId].BidIncrease;
var bidDecrease = keywordData[uniqueId].BidDecrease;
if ((currentPosition > lowerPositionTarget) && (currentPosition !== 0)) {
var linearBidModel = Math.min(2 * bidIncrease, (2 * bidIncrease / lowerPositionTarget) * (currentPosition - lowerPositionTarget));
var newBid = Math.min((cpcBid + linearBidModel), maxBid);
}
if ((currentPosition < higherPositionTarget) && (currentPosition !== 0)) {
var linearBidModel = Math.min(2 * bidDecrease, ((-4) * bidDecrease / higherPositionTarget) * (currentPosition - higherPositionTarget));
var newBid = Math.max((cpcBid - linearBidModel), minBid);
if (cpcBid > firstPageBid) {
var newBid = Math.max(firstPageBid, newBid);
}
}
if ((currentPosition === 0) && useFirstPageBidsOnKeywordsWithNoImpressions && (cpcBid < firstPageBid)) {
var newBid = firstPageBid;
}
if (isNaN(newBid)) {
Logger.log("Warning: new bid is not a number for keyword '" + keywordData[uniqueId].Criteria + "'. This keyword will be skipped");
return -1;
}
return newBid;
}
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
function findCurrentAveragePosition() {
for (var x in keywordData) {
if (keywordData[x].hasOwnProperty('LastHour')) {
keywordData[x].CurrentAveragePosition = calculateAveragePosition(keywordData[x]);
} else {
keywordData[x].CurrentAveragePosition = keywordData[x].ThisHour.AveragePosition;
}
}
}
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
function calculateAveragePosition(keywordDataElement) {
var lastHourImpressions = keywordDataElement.LastHour.Impressions;
var lastHourAveragePosition = keywordDataElement.LastHour.AveragePosition;
var thisHourImpressions = keywordDataElement.ThisHour.Impressions;
var thisHourAveragePosition = keywordDataElement.ThisHour.AveragePosition;
if (thisHourImpressions == lastHourImpressions) {
return 0;
}
var currentPosition = (thisHourImpressions * thisHourAveragePosition - lastHourImpressions * lastHourAveragePosition) / (thisHourImpressions - lastHourImpressions);
if (currentPosition < 1) {
return 0;
}
return currentPosition;
}
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
function keywordUniqueId(keyword) {
var id = keyword.getId();
var idsIndex = ids.indexOf(id);
if (idsIndex === ids.lastIndexOf(id)) {
return uniqueIds[idsIndex];
}
var adGroupId = keyword.getAdGroup().getId();
return adGroupId + idJoin + id;
}
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
function setMinMaxBids() {
for (var x in keywordData) {
keywordData[x].MinBid = minBid;
keywordData[x].MaxBid = maxBid;
keywordData[x].FirstPageMaxBid = firstPageMaxBid;
}
}
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
function setBidChange() {
for (var x in keywordData) {
keywordData[x].BidIncrease = keywordData[x].CpcBid * bidIncreaseProportion / 2;
keywordData[x].BidDecrease = keywordData[x].CpcBid * bidDecreaseProportion / 2;
}
}
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
function updateKeywords(idBatch) {
var keywordIterator = AdWordsApp.keywords()
.withIds(idBatch.map(function (str) {
return str.split(idJoin);
}))
.get();
while (keywordIterator.hasNext()) {
var keyword = keywordIterator.next();
var uniqueId = keywordUniqueId(keyword);
var newBid = bidChange(uniqueId);
if (newBid !== -1) {
keyword.setMaxCpc(newBid);
}
}
}
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
function resultsString() {
var results = [];
for (var uniqueId in keywordData) {
var resultsRow = [uniqueId, keywordData[uniqueId].ThisHour.Impressions, keywordData[uniqueId].ThisHour.AveragePosition];
results.push(resultsRow.join(fieldJoin));
}
return results.join(lineJoin);
}
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
}